-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "bip39",
"version": "0.0.1",
"description": "Universal implementation of a BIP39 subset",
"main": "src/index.js",
"scripts": {
"test": "npm run unit-test && npm run integration-test",
"unit-test": "mocha --require babel-polyfill --compilers js:babel-register",
"bench": "npm run dist && node benchmark/benchmark.js",
"integration-test": "karma start --log-level info --fail-on-empty-test-suite",
"dist": "webpack"
},
"keywords": [
"bip39"
],
"author": "Nikolaus Piccolotto <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.0.11",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"file-loader": "^0.11.1",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.3",
"mocha": "^3.3.0",
"webpack": "^2.5.1"
}
}