-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 1.25 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
{
"name": "lesson-carousel-starter-kit",
"version": "1.0.0",
"description": "learn how to make a carousel with 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": "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/lesson-carousel-starter-kit/"
},
"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"
}
}