-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 961 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
41
42
43
44
45
46
47
{
"name": "proto",
"description": "Javascript development web app for quick prototyping",
"author": "Sami Pussinen",
"version": "0.0.0",
"scripts": {
"test": "tape test/*.js",
"start": "node dist/index.js"
},
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/SamiPussinen/proto"
},
"bugs": {
"url": "https://github.com/SamiPussinen/proto/issues"
},
"dependencies": {
"express": "^4.10.7"
},
"devDependencies": {
"browserify": "^8.1.0",
"coffee-script": "^1.8.0",
"coffeeify": "^1.0.0",
"gulp": "^3.8.10",
"gulp-coffee": "^2.2.0",
"gulp-concat": "^2.4.3",
"gulp-jade": "^0.10.0",
"gulp-uglify": "^1.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"vinyl-transform": "^1.0.0"
},
"jshintConfig": {
"asi": false,
"browser": true,
"curly": false,
"expr": true,
"indent": 4,
"loopfunc": true,
"node": true,
"trailing": true,
"undef": true,
"white": true
},
"license": "MIT"
}