-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 935 Bytes
/
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
40
{
"name": "parcel",
"version": "0.0.1",
"description": "Package management using a file server and path conventions.",
"repository": {
"type": "git",
"url": "git://github.com/sifteo/parcel.git"
},
"bugs": {
"url": "https://github.com/sifteo/parcel/issues"
},
"author": {
"name": "Jared Hanson",
"email": "[email protected]"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://opensource.org/licenses/Apache-2.0"
}
],
"main": "./lib",
"bin" : {
"parcel" : "./bin/parcel.js"
},
"dependencies": {
"commander": "1.x.x",
"path-extra": "0.1.x",
"aws-sdk": "0.9.x",
"debug": "0.7.x"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
},
"scripts": {
"test": "NODE_PATH=./lib node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
},
"engines": { "node": ">= 0.6.0" }
}