-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "famous-example",
"version": "0.3.0-alpha",
"description": "famous examples",
"browser": "src/index.js",
"main": "plugin.js",
"browserify": {
"transform": [
"cssify",
"deamdify"
]
},
"scripts": {
"start": "npm run build && node server.js",
"start-dev": "npm run watch & node server.js",
"test": "npm run lint -s && npm run build",
"build": "browserify src/index.js | uglifyjs > public/bundle.js",
"watch": "watchify src/index.js -o public/bundle.js --debug --verbose",
"lint-eslint": "eslint src/",
"lint-jscs": "jscs src/",
"lint": "npm run lint-eslint && npm run lint-jscs"
},
"devDependencies": {
"eslint": "^0.7.4",
"jscs": "^1.5.8"
},
"author": "TheAlphaNerd",
"license": "ISC",
"dependencies": {
"browserify": "^5.9.1",
"cssify": "^0.6.0",
"deamdify": "^0.1.1",
"famous": "famous/famous#v0.3.0-alpha",
"famous-polyfills": "^0.2.2",
"hapi": "^6.5.1",
"uglify-js": "^2.4.15",
"watchify": "^1.0.1"
}
}