-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "divvy-keypairs",
"version": "0.10.2",
"description": "divvy key pairs",
"files": [
"distrib/npm/*",
"bin/*",
"build/*",
"test/*"
],
"main": "distrib/npm/",
"directories": {
"test": "test"
},
"dependencies": {
"babel-runtime": "5.8.20",
"bn.js": "3.1.1",
"brorand": "1.0.5",
"elliptic": "6.5.7",
"hash.js": "1.0.3",
"divvy-address-codec": "2.0.2"
},
"devDependencies": {
"assert-diff": "1.0.1",
"babel": "5.8.20",
"babel-core": "5.8.20",
"babel-eslint": "6.0.0",
"babel-loader": "5.3.2",
"codecov.io": "0.1.6",
"coveralls": "2.11.4",
"eslint": "2.7.0",
"eventemitter2": "0.4.14",
"istanbul": "0.3.5",
"map-stream": "0.1.0",
"mocha": "2.3.3",
"nock": "2.13.0"
},
"scripts": {
"compile": "babel --optional runtime -d distrib/npm/ src/",
"compile-with-source-maps": "babel --optional runtime -s -t -d distrib/npm/ src/",
"prepublish": "npm test && npm run lint && npm run compile",
"test": "istanbul test _mocha",
"lint": "if ! [ -f eslintrc ]; then curl -o eslintrc 'https://raw.githubusercontent.com/xdv/javascript-style-guide/es6/eslintrc'; echo 'parser: babel-eslint' >> eslintrc; fi; eslint -c eslintrc src/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/xdv/divvy-keypairs.git"
},
"bugs": {
"url": "https://github.com/xdv/divvy-keypairs/issues"
},
"homepage": "https://github.com/xdv/divvy-keypairs#readme",
"license": "ISC",
"readmeFilename": "README.md"
}