-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "mam.client.js",
"private": false,
"version": "0.0.1",
"main": "lib/library.js",
"scripts": {
"web": "webpack --progress --colors --watch",
"node": "webpack --progress --colors --watch --env node",
"build":
"webpack --progress --colors --env node && webpack --progress --colors",
"test":
"mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch":
"mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"iota.crypto.js": "iotaledger/iota.crypto.js",
"iota.lib.js": "^0.4.2",
"pify": "^3.0.0",
"rust-wasm-loader": "^0.1.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"mocha": "4.0.1",
"rust-emscripten-loader": "^0.0.1",
"webpack": "3.7.1",
"yargs": "7.1.0"
}
}