-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.32 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gaston",
"version": "0.29.10",
"preferGlobal": true,
"description": "buildtool for vigour-io",
"main": "lib/index.js",
"author": {
"name": "Vigour.io",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vigour-io/gaston.git"
},
"bin": {
"gaston": "bin/gaston",
"gastond": "bin/gastond"
},
"scripts": {
"postinstall": "scripts/post-install.js",
"test": "./bin/gaston test",
"build": "./bin/gaston build -s test/sample-app/src/index.js -i -o ./test/sample-app/",
"dist": "./bin/gaston dist"
},
"license": "MIT",
"dependencies": {
"babelify": "^6.3.0",
"bluebird": "^3.0.5",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"chokidar": "^1.0.5",
"circular-json": "^0.1.6",
"daemon": "^1.1.0",
"exorcist": "^0.4.0",
"express": "^4.13.3",
"gaston-aliasify": "0.2.0",
"gaston-blessify": "^0.4.5",
"gaston-serve-index": "1.3.0",
"gaston-smapify": "^0.2.0",
"glob": "^5.0.15",
"ip": "^0.3.3",
"keypress": "^0.2.1",
"lodash": "^3.10.1",
"mime": "^1.3.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.2",
"mocha-phantomjs": "^3.6.0",
"multi-glob": "^1.0.1",
"npmlog": "^1.2.1",
"openurl": "^1.1.0",
"phantomjs": "1.9.7-15",
"rimraf": "^2.4.4",
"shelljs": "^0.5.3",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0",
"smapify": "^0.6.0",
"socket.io": "^1.3.6",
"socket.io-client": "^1.3.6",
"through2": "^2.0.0",
"uglify-js": "^2.6.1",
"uglifycss": "0.0.18",
"update-notifier": "^0.5.0",
"url": "^0.11.0",
"vigour-fs-promised": "^1.1.0",
"watchify": "^3.3.1"
},
"bugs": {
"url": "https://github.com/vigour-io/gaston/issues"
},
"homepage": "https://github.com/vigour-io/gaston",
"engine": "node ^5.0.0",
"devDependencies": {},
"standard": {
"globals": [
"describe",
"it",
"assert",
"expect",
"should",
"before",
"beforeEach",
"after",
"afterEach",
"sinon"
]
},
"gaston": {
"package": true,
"index-path": "test/sample-app/index.html",
"source-maps": "true",
"dist": {
"root": "test/sample-app/",
"appcache": true,
"files": [
"build.*",
"assets/**/*.*"
]
}
}
}