forked from sCrypt-Inc/scryptlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "scryptlib",
"version": "2.1.17",
"description": "Javascript SDK for integration of Bitcoin SV Smart Contracts written in sCrypt language.",
"engines": {
"node": ">=14.0.0"
},
"bin": "bin/cli.js",
"main": "dist/index.js",
"types": "dist",
"browser": {
"child_process": false,
"fs": false
},
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"cov": "nyc npm t",
"lint": "eslint src --ext .ts,.js --cache --fix",
"testlint": "eslint src --ext .ts,.js",
"test": "npm run td",
"td": "mocha -r ts-node/register 'test/**/*.test.ts' --timeout 600000 -g '' ",
"pretest": "ts-node test/fixture/autoCompile.ts",
"prepare": "husky install && npm run compile",
"postinstall": "node ./postinstall.js",
"publishcheck": "sh ./publishcheck.sh",
"prepublishOnly": "npm run publishcheck && npm run lint && npm run compile",
"getBinary": "node ./util/getBinary.js",
"beta": "npm run compile && npm run testlint && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrypt-sv/scryptlib.git"
},
"keywords": [
"bsv",
"sCrypt",
"Javascript",
"API"
],
"author": "sCrypt.Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/scrypt-sv/scryptlib/issues"
},
"homepage": "https://github.com/scrypt-sv/scryptlib#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.2",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"glob": "^7.1.6",
"husky": "^5.2.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.9.5",
"webpack": "4.29.5",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@discoveryjs/json-ext": "^0.5.7",
"bsv": "^1.5.6",
"compare-versions": "^3.6.0",
"json-bigint": "^1.0.0",
"node-fetch": "^3.0.0",
"patch-package": "^6.4.7",
"rimraf": "^3.0.2",
"sourcemap-codec": "^1.4.8",
"yargs": "^17.6.2"
}
}