-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1020 Bytes
/
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
{
"name": "divvy-address-codec",
"version": "2.0.2",
"description": "encodes/decodes base58 encoded divvy identifiers",
"main": "src/index.js",
"license": "ISC",
"dependencies": {
"create-hash": "1.1.2",
"d-address-codec": "0.7.2"
},
"repository": {
"type": "git",
"url": "git://github.com/xdv/divvy-address-codec.git"
},
"scripts": {
"test": "istanbul test _mocha",
"prepublish": "npm test && npm run lint",
"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/xdvproject/javascript-style-guide/master/eslintrc'; fi; eslint -c eslintrc src/*.js test/*.js"
},
"devDependencies": {
"codecov.io": "0.1.6",
"coveralls": "2.11.4",
"eslint": "4.19.1",
"eslint-plugin-no-unused-expressions": "0.1.0",
"istanbul": "0.3.21",
"mocha": "5.0.5"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=0.12.0"
}
}