-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1014 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1014 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
33
34
35
36
37
38
39
40
{
"name": "dryer_station",
"version": "1.0.0",
"description": "Learn project for learn.javascript.ru",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"hint": "jshint components/**/*.js",
"fest": "./node_modules/fest/bin/fest-build --dir=components"
},
"repository": {
"type": "git",
"url": "git://github.com/vapik/dryer_station.git"
},
"keywords": [],
"author": "Anatoly V <anatoly.veshtemov@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vapik/dryer_station/issues"
},
"homepage": "https://github.com/vapik/dryer_station#readme",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"jade": "^1.11.0",
"morgan": "^1.7.0",
"nconf": "^0.8.4",
"pug": "^2.0.0-beta6",
"socket.io": "^1.5.0",
"ws": "^1.1.1"
},
"devDependencies": {
"fest": "^0.12.1"
},
"engines": {
"node": "6.7.0",
"npm" : "3.10.3"
}
}