-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 883 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 883 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
32
{
"name": "node-islands",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- watch",
"start": "node --harmony_spreadcalls --harmony_spread_arrays --harmony_concat_spreadable --harmony_default_parameters --harmony_destructuring ./main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calebgregory/node-islands.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/calebgregory/node-islands/issues"
},
"homepage": "https://github.com/calebgregory/node-islands#readme",
"devDependencies": {
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"mocha": "^3.0.2"
},
"dependencies": {
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"ramda": "^0.22.1"
}
}