-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.24 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "fluxury",
"version": "3.1.0",
"description": "A React - Flux starter kit.",
"main": "lib/app.js",
"scripts": {
"airbnb": "echo 'jscs currently does not support esnext well :(' && jscs -v -e -c airbnb.json lib/**/*.js",
"build:js": "browserify -d lib/app.js -o build/bundle.fluxury.js",
"build:css:main": "lessc -x --source-map-map-inline assets/css/main.less > build/main.min.css",
"build:css:pirate": "lessc -x --source-map-map-inline assets/css/piratebadge.css > build/piratebadge.min.css",
"build:css": "npm run build:css:main & npm run build:css:pirate",
"build": "npm run build:js & npm run build:css",
"clean": "rm -r build/*",
"init": "npm install && npm run reading",
"init:browsersync": "sudo npm install browser-sync --save-dev",
"lint": "jsxhint -c .jshintrc lib/**/*",
"prebuild:js": "npm run lint",
"prewatch:js": "npm run lint",
"reading": "echo \"Reading: http://blog.keithcirkel.co.uk/how-to-use-npm-as-a-build-tool/\"",
"start": "npm run watch",
"sync": "browser-sync start --server --files \"build/*.min.css, build/bundle.fluxury.js\"",
"test": "jest",
"watch:js": "watchify lib/app.js -o build/bundle.fluxury.js -v -d",
"watch:css": "watch 'npm run build:css' assets/css",
"watch": "npm run watch:js & npm run watch:css"
},
"repository": {
"type": "git",
"url": "https://github.com/jim-y/fluxury.git"
},
"keywords": [
"javascript",
"react",
"flux",
"immutability",
"es6"
],
"author": "Attila Kling <attila.kling@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jim-y/fluxury/issues"
},
"homepage": "https://github.com/jim-y/fluxury",
"dependencies": {
"browserify": "^8.1.1",
"flux": "^2.0.1",
"immutable": "^3.6.2",
"react": "^0.13.0",
"react-router": "^0.11.6"
},
"devDependencies": {
"babelify": "^5.0.3",
"jsxhint": "^0.9.0",
"less": "^2.4.0",
"uglify": "^0.1.1",
"watch": "^0.14.0",
"watchify": "^2.3.0"
},
"jest": {
"rootDir": "./lib"
},
"browserify": {
"transform": ["babelify"]
}
}