-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 875 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 875 Bytes
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
{
"name": "@microverse-network/redux",
"version": "0.0.0",
"main": "lib/index.js",
"scripts": {
"compile": "babel --out-dir lib --copy-files src",
"compile-dev": "npm run compile -- --source-maps inline",
"compile-watch": "npm run compile-dev -- --watch",
"prepare": "npm run compile",
"start": "npm run compile-watch",
"test": "babel-node test.js",
"watch-test": "nodemon --exec yarn run test"
},
"dependencies": {
"debug": "^4.1.1",
"lodash.difference": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.omit": "^4.5.0",
"redux": "^4.0.1",
"starname": "1.0.3"
},
"devDependencies": {
"@microverse-network/core": "0.0.0",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.17.3",
"tape": "^4.9.0"
}
}