forked from JBaczuk/bscript-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "bscript-parser",
"version": "1.0.3",
"description": "Node Bitcoin Script Parser",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"docs:build": "documentation build index.js -f md > API.md",
"docs:lint": "documentation lint index.js",
"docs:serve": "documentation serve index.js"
},
"nyc": {
"reporter": [
"html",
"text",
"lcov",
"json-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JBaczuk/bscript-parser.git"
},
"author": "Jordan Baczuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/JBaczuk/bscript-parser/issues"
},
"homepage": "https://github.com/JBaczuk/bscript-parser#readme",
"dependencies": {
"depd": "2.0.0",
"bech32": "1.1.3",
"bs58check": "2.1.2"
},
"devDependencies": {
"chai": "^4.1.2",
"documentation": "^9.1.1",
"eslint": "^5.11.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}