forked from node-girls/workshop-2015
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 692 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 692 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
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"start:dev": "nodemon --ignore node_modules/ -e js,html,css server.js",
"test": "node test/runner.js",
"test:nyan": "node test/runner.js | tnyan",
"coverage": "istanbul cover test/runner.js",
"lint": "eslint **/*.js *.js",
"open": "open http://localhost:8000"
},
"author": "node-girls",
"license": "ISC",
"devDependencies": {
"eslint": "^1.8.0",
"istanbul": "^0.4.0",
"nodemon": "^1.8.0",
"shot": "^1.7.0",
"tap-nyan": "0.0.2",
"tape": "^4.2.2"
},
"dependencies": {
"node-static": "^0.7.7"
}
}