-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "slp-parser",
"version": "0.0.4",
"description": "Parse Simple Ledger Protocol OP_RETURN data segments with ease!",
"author": "blockparty-sh",
"license": "MIT",
"repository": "https://github.com/simpleledger/slp-parser.js",
"bugs": "https://github.com/simpleledger/slp-parser.js/issues",
"keywords": [
"SLP",
"simple",
"ledger",
"protocol",
"metadata",
"op_return",
"parser"
],
"main": "dist/index.js",
"files": [
"dist/"
],
"unpkg": "dist/slp-parser.min.js",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"prebuild": "npm run lint",
"build": "tsc && browserify dist/index.js -p tsify --standalone slp-parser --debug -o dist/slp-parser.js && uglifyjs dist/slp-parser.js --compress --source-map content=inline -o dist/slp-parser.min.js",
"test": "npm run build && nyc mocha",
"prepare": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"bignumber.js": "^9.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.3",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"ts-node": "^8.8.1",
"tsify": "^4.0.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"uglify-es": "^3.3.9"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"lib"
],
"all": true
}
}