forked from vol4tim/generator-message-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 748 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 748 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
{
"name": "generator",
"version": "1.0.0",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"start:sub": "node dist/sub.js",
"build": "babel src -d dist --presets es2015,stage-2",
"local:pub": "nodemon src/index.js --exec babel-node",
"local:sub": "nodemon src/sub.js --exec babel-node",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"ipfs-api": "^15.0.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"nodemon": "^1.12.1"
}
}