-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "daft-punk",
"version": "1.0.1",
"description": "Interactive version of Daft Punk's Lose Yourself To Dance.",
"main": "build/index.js",
"homepage": "http://robi.me/daft-punk",
"author": {
"name": "Sébastien Robaszkiewicz",
"email": "[email protected]",
"url": "http://robi.me"
},
"repository": "i-Robi/daft-punk",
"standalone": "script",
"scripts": {
"bundle": "node ./bin/scripts.js --bundle",
"csv2json": "node ./bin/csv-scripts.js",
"hint": "jshint ./src; true",
"postbundle": "npm run uglify",
"prebundle": "npm run hint && npm run transpile",
"sass": "node ./bin/scripts.js --sass",
"start": "http-server",
"transpile": "node ./bin/scripts.js --transpile",
"uglify": "node ./bin/scripts.js --uglify",
"watch": "node ./bin/scripts.js --watch"
},
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
},
"dependencies": {
"babel-runtime": "^5.8.19",
"motion-input": "collective-soundworks/motion-input#1.0.2",
"waves-audio": "wavesjs/audio",
"waves-loaders": "wavesjs/loaders"
},
"devDependencies": {
"babel": "^5.8.23",
"browserify": "^11.0.1",
"cli-color": "^1.0.0",
"csv-parse": "^1.0.0",
"fs-extra": "^0.22.1",
"jshint": "^2.8.0",
"node-sass": "^3.2.0",
"node-watch": "^0.3.4",
"uglify-js": "^2.4.24"
}
}