-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "d-address-codec",
"version": "0.7.2",
"license": "ISC",
"description": "crypto currency address codec",
"files": [
"dist/npm/*"
],
"main": "dist/npm/",
"directories": {
"test": "test"
},
"dependencies": {
"base-x": "1.0.1"
},
"devDependencies": {
"assert-diff": "1.0.1",
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"bn.js": "3.2.0",
"codecov.io": "0.1.6",
"coveralls": "2.11.4",
"create-hash": "1.1.2",
"eslint": "1.6.0",
"eventemitter2": "0.4.14",
"hash.js": "1.0.3",
"istanbul": "0.3.21",
"lodash": "3.10.1",
"map-stream": "0.1.0",
"mocha": "2.3.3",
"nock": "2.13.0",
"webpack": "1.12.2",
"yargs": "3.26.0"
},
"scripts": {
"build": "gulp",
"compile": "babel -i runtime -d dist/npm/ src/",
"compile-with-source-maps": "babel -i runtime -s -t -d dist/npm/ src/",
"prepublish": "npm test && npm run lint && npm run compile",
"test": "istanbul test _mocha",
"codecov": "cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js",
"lint": "if ! [ -f eslintrc ]; then curl -o eslintrc 'https://raw.githubusercontent.com/xdv/javascript-style-guide/es6/eslintrc'; fi; eslint -c eslintrc src/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/xdv/d-address-codec.git"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=0.12.0"
}
}