-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "@parity/ethkey.js",
"version": "0.2.2",
"description": "",
"main": "target/lib.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run build:wasm && npm run build:js",
"build:wasm": "cd wasm && ./build.sh && cd ..",
"build:js": "node_modules/.bin/rollup -c",
"test": "npm run build && node ./tests | tap-specs",
"test:js": "npm run build:js && node ./tests | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/ethkey-js.git"
},
"author": "Parity Team <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/paritytech/ethkey-js/issues"
},
"homepage": "https://github.com/paritytech/ethkey-js#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^3.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tape-async": "^2.3.0"
},
"dependencies": {
"js-sha3": "^0.6.1",
"secp256k1": "^3.3.0"
}
}