forked from router5/router5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "router5",
"private": true,
"description": "A simple, powerful, view-agnostic, modular and extensible router",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "git clean -fXd -e '!node_modules'",
"clean:deps": "rimraf packages/*/yarn.lock",
"reset": "npm run clean && npm run clean:deps && npm run bootstrap",
"build": "node scripts/build && npm run build:umd",
"build:umd": "rollup -c rollup.config.js",
"test": "mocha --compilers js:babel-core/register --require test-helper.js --recursive 'packages/*/test/**/*.js'",
"lint": "eslint packages/*/modules",
"check": "yarn run lint && yarn run test",
"format": "prettier",
"precommit": "lint-staged",
"changelog": "lerna-changelog",
"docs:start": "node packages/docs/scripts/start",
"copy": "cp -f README.md ./packages/router5/README.md",
"release": "git pull --rebase && npm run build && npm run copy && lerna publish"
},
"lint-staged": {
"packages/**/*.js": [
"prettier --tab-width 4 --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/router5/router5.git"
},
"keywords": [
"router",
"routing",
"html5",
"functional",
"reactive",
"universal",
"isomorphic"
],
"author": "Thomas Roch",
"license": "MIT",
"bugs": {
"url": "https://github.com/router5/router5/issues"
},
"homepage": "http://router5.github.io",
"devDependencies": {
"babel-cli": "~6.24.1",
"babel-core": "~6.25.0",
"babel-eslint": "~7.2.3",
"babel-loader": "~7.0.0",
"babel-plugin-external-helpers": "~6.22.0",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-export-extensions": "~6.22.0",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-es2015-native-modules": "~6.9.4",
"babel-preset-es2015-rollup": "~3.0.0",
"babel-preset-react": "~6.24.1",
"chai": "~3.5.0",
"chai-enzyme": "~0.7.1",
"conventional-changelog": "~1.1.3",
"coveralls": "~2.13.1",
"enzyme": "~2.8.2",
"eslint": "~4.0.0",
"eslint-plugin-react": "~7.1.0",
"express": "~4.15.3",
"html-loader": "~0.4.5",
"html-webpack-plugin": "~2.28.0",
"husky": "~0.13.4",
"isparta": "~4.0.0",
"jsdom": "~11.0.0",
"lerna": "~2.0.0-rc.5",
"lerna-changelog": "~0.5.0",
"lint-staged": "~3.6.1",
"mocha": "~3.4.2",
"mocha-lcov-reporter": "~1.3.0",
"prettier": "~1.4.4",
"react": "~15.6.1",
"react-addons-test-utils": "~15.6.0",
"react-dom": "~15.6.1",
"rimraf": "~2.6.1",
"rollup": "~0.43.0",
"rollup-plugin-babel": "~2.7.1",
"rollup-plugin-commonjs": "~8.0.2",
"rollup-plugin-node-resolve": "~3.0.0",
"rollup-plugin-uglify": "~2.0.1",
"sinon": "~2.3.4",
"sinon-chai": "~2.11.0",
"webpack": "~2.6.1",
"webpack-dev-middleware": "~1.10.2",
"webpack-dev-server": "~2.4.5",
"yargs": "~8.0.1"
}
}