-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "engine-seed",
"version": "1.0.0",
"description": "seed project for a browserified version of the Famous Engine",
"browser": "src/index.js",
"scripts": {
"build": "browserify src/index.js -g uglifyify | uglifyjs --screw-ie8 -m -c dead_code,sequences,conditionals,booleans,unused,if_return,join_vars,drop_debugger > public/bundle.js",
"watch": "watchify src/index.js -d -v -o public/bundle.js",
"start": "npm run build && serve --compress public/ -p 1618",
"dev": "node ./bin/dev.js",
"test": "npm run lint -s && npm run build",
"lint-jscs": "jscs src/",
"lint-eslint": "eslint --ignore-path .gitignore src/",
"lint": "npm run lint-eslint && npm run lint-jscs"
},
"repository": {
"type": "git",
"url": "https://github.com/Famous/engine-seed.git"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"browserify": "^10.1.3",
"chalk": "^1.0.0",
"eslint": "^0.22.1",
"finalhandler": "^0.3.6",
"jscs": "^1.7.3",
"serve-static": "^1.9.3",
"uglify-js": "^2.4.15",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
},
"author": "Famous",
"license": "MIT",
"dependencies": {
"babelify": "^6.0.1",
"eventemitter3": "^1.1.1",
"famous": "^0.6.1",
"lodash": "^3.10.1",
"underscore": "^1.8.3"
}
}