-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.69 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
46
47
48
49
{
"name": "air-traffic-control",
"version": "0.1.2",
"description": "Dead simple redux routing",
"main": "build/air-traffic-control.js",
"scripts": {
"test": "jest",
"lint": "eslint src/*.js && eslint test/*.js",
"compile": "mkdir -p build && babel --presets es2015,stage-0 -d build/ src/ && mv build/index.js build/air-traffic-control.js",
"bundle": "webpack",
"minify": "uglifyjs build/air-traffic-control.js -c -o build/air-traffic-control.min.js",
"build": "npm run lint && npm run compile && npm run minify",
"rebuild": "npm run clean && npm run build",
"compress": "tar -cvzf build/air-traffic-control.min.js.tar.gz build/air-traffic-control.min.js",
"prepublish": "npm run build",
"clean": "rm -rf build",
"docs": "docblox2md docs/_docs/*.md && npm run site",
"site-dependencies": "bundle install && cd docs && bundle install",
"site": "npm run site-dependencies && cd docs && bundle exec jekyll build",
"release": "npm run rebuild && npm run compress && npm run docs"
},
"keywords": [
"redux",
"router",
"react"
],
"author": "Airplane Mode Team",
"license": "MIT",
"dependencies": {
"crossroads": "^0.12.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"docblox2md": "^0.7.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest-cli": "^22.0.6",
"redux": "^3.7.2",
"redux-mock-store": "^1.4.0",
"uglify-js": "^3.3.7",
"webpack": "^3.10.0"
}
}