-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 911 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 911 Bytes
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
{
"name": "react-isorouter",
"version": "0.0.1",
"description": "An isomorphic HTML5-history based router for React",
"main": "index.js",
"scripts": {
"test": "mocha --compilers jsx:jsx-require-extension tests/**/*.js*",
"build": "babel src --out-dir lib",
"pretest": "npm run build",
"prepublish": "npm run build"
},
"keywords": [
"react",
"router",
"pushstate",
"isomorphic",
"es6"
],
"author": "Josh Girvin <josh@studionone.com.au>",
"license": "MIT",
"dependencies": {
"common-history": "0.0.1",
"react": "^0.13.3"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^3.1.9",
"chai": "^2.3.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.4.0",
"jsdom": "^5.4.3",
"mocha": "^2.2.5",
"mocha-jsdom": "^0.4.0",
"react-test-tree": "^0.1.7",
"rewire": "^2.3.3",
"sinon": "^1.14.1"
}
}