-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 763 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 763 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
{
"name": "lego-plotter",
"version": "0.1.0",
"description": "Plotter of LEGO device",
"repository": {
"type": "git",
"url": "https://github.com/Rebulus/lego-plotter.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Rebulus/lego-plotter/issues"
},
"devDependencies": {
"jscs": "1.0.15",
"jshint": "2.5.5",
"mocha": "*",
"gulp-stylus": "~1.3.4",
"gulp": "~3.8.10"
},
"engines": {
"node": ">=0.10.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/jshint . && ./node_modules/.bin/jscs . ./node_modules/.bin/mocha"
},
"dependencies": {
"express": "^4.10.4",
"jade": "^1.8.0",
"stylus": "~0.49.3",
"body-parser": "~1.9.3"
}
}