-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "engine-seed",
"version": "1.0.0",
"repo": "https://github.com/Famous/engine-seed/",
"description": "seed project for a browserified version of the Famous Ennge",
"browser": "src/twitterus/index.js",
"scripts": {
"build": "browserify src/twitterus/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/twitterus/index.js -d -v -o public/bundle.js",
"start": "npm run build && serve --compress public/ -p 1618",
"dev": "npm run watch & serve public/ -p 1618",
"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",
"eslint": "^0.21.2",
"jscs": "^1.7.3",
"serve": "^1.4.0",
"uglify-js": "^2.4.15",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
},
"author": "Famous",
"license": "All rights reserved",
"dependencies": {
"babelify": "^6.0.1",
"famous": "git://github.com/famous/engine"
}
}