forked from KanoComputing/make-art
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "draw",
"version": "0.1.0",
"description": "App to learn programming using a basic CoffeeScript drawing API",
"main": "index.js",
"scripts": {
"start": "node ./server/index.js",
"watch": "gulp watch",
"build": "gulp",
"bundle": "./bundle",
"postinstall": "node node_modules/.bin/gulp default",
"jshint": "jshint lib",
"jscs": "jscs lib",
"test": "./node_modules/.bin/mocha test/**/*"
},
"author": "Tancredi Trugenberger",
"repository": {
"type": "git",
"url": "https://github.com/KanoComputing/kano-draw"
},
"license": "MIT2",
"dependencies": {
"api-service": "1.0.0",
"cli-color": "~0.2.x",
"coffee-script": "~1.7.x",
"color": "^0.7.3",
"deep-equal": "^1.0.0",
"express": "^4.10.5",
"griddy": "0.0.x",
"gulp": "~3.5.x",
"gulp-browserify": "~0.4.x",
"gulp-callback": "0.0.3",
"gulp-jade": "~0.4.x",
"gulp-livereload": "1.2.0",
"gulp-rename": "~0.2.x",
"gulp-stylus": "^2.0.1",
"http-server": "~0.6.x",
"kano-world-sdk": ">1.0.0",
"lodash": "~2.4.x",
"marked": "~0.3.x",
"moment": "^2.10.6",
"nib": "~1.0.x",
"partialify": "^3.1.1",
"play-audio": "^0.1.0",
"throttle-debounce": "^0.1.1",
"tiny-lr": "0.0.9"
},
"devDependencies": {
"mocha": "2.3.x",
"chai": "3.2.x"
},
"engines": {
"node": "0.12.x"
}
}