forked from kriasoft/universal-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "react-routing",
"version": "0.0.4",
"description": "A routing and navigation solution for React.js applications",
"homepage": "http://www.kriasoft.com/react-routing",
"keywords": [
"react",
"reactjs",
"react-component",
"route",
"routes",
"router",
"routing",
"flux"
],
"repository": "kriasoft/react-routing",
"author": "Kriasoft <[email protected]> (http://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <[email protected]>"
],
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"path-to-regexp": "^1.2.0"
},
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel": "^5.8.19",
"babel-eslint": "^4.0.5",
"babelify": "^6.1.3",
"browser-sync": "^2.8.1",
"browserify": "^11.0.1",
"chai": "^3.2.0",
"cssnano": "^2.1.1",
"cssnext": "^1.8.2",
"del": "^1.2.0",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.1.0",
"front-matter": "^1.0.0",
"gaze": "^0.5.1",
"highlight.js": "^8.7.0",
"lodash.template": "^3.6.2",
"markdown-it": "^4.4.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"moment": "^2.10.6",
"normalize.css": "^3.0.3",
"postcss": "^4.1.16",
"postcss-nested": "^0.3.2",
"react": "^0.14.0-beta1",
"sinon": "^1.15.4"
},
"scripts": {
"lint": "eslint src docs/js tools",
"test": "mocha test --compilers js:babel/register",
"build": "babel-node tools/build",
"start": "babel-node tools/serve",
"publish-ghpages": "npm run build && cd build && git init && git add --all . && git commit --amend --no-edit && git push origin gh-pages -f",
"prepublish": "npm run build"
}
}