-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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
{
"name": "robi.me",
"version": "2.0.1",
"description": "Sébastien Robaszkiewicz's personal website: interactive experiences.",
"main": "build/index.js",
"homepage": "http://robi.me",
"author": {
"name": "Sébastien Robaszkiewicz",
"email": "hello@robi.me",
"url": "http://robi.me"
},
"repository": "i-Robi/i-Robi.github.io",
"standalone": "script",
"scripts": {
"bundle": "node ./bin/scripts.js --bundle",
"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"
},
"devDependencies": {
"browserify": "^11.0.1",
"cli-color": "^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"
}
}