-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
56 lines (56 loc) · 1.79 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": "eosjs-keygen",
"version": "1.3.2",
"description": "General purpose library for private key storage and key management.",
"main": "lib/index.js",
"browser": "lib/browser.js",
"node": "",
"scripts": {
"test": "mocha --exit --use_strict src/*.test.js",
"coverage": "istanbul cover _mocha -- --exit -R spec src/*.test.js",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"prepublishOnly": "npm run build_lib && npm run prepublishOnly_test && npm run docs",
"prepublishOnly_test": "mocha --exit --use_strict lib/*.test.js",
"build": "npm run docs && npm run build_browser",
"docs": "jsdoc2md src/keystore.js src/keygen.js src/jsdoc-types.js > API.md",
"build_lib": "babel src --out-dir lib",
"build_browser": "npm run build_lib && mkdir -p dist && browserify -o dist/eosjs-keygen.js -s kos lib/index.js",
"build_browser_test": "npm run build_lib && mkdir -p dist && browserify -o dist/mocha-test.js lib/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOSIO/eosjs-keygen.git"
},
"keywords": [
"EOS",
"Blockchain"
],
"author": "jamesc",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOSIO/eosjs-keygen/issues"
},
"homepage": "https://github.com/EOSIO/eosjs-keygen#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.4.0",
"coveralls": "^3.0.0",
"eosjs": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"jsdoc-to-markdown": "^3.0.4",
"mocha": "^5.2.0"
},
"dependencies": {
"eosjs-ecc": "^4.0.1",
"history": "^4.7.2",
"localStorage": "^1.0.3",
"minimatch": "^3.0.4"
},
"babel": {
"presets": [
"es2015"
]
}
}