forked from visionmedia/page.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "yarr.js",
"description": "Yet Another React Router (~1200 bytes)",
"version": "2.0.1",
"scripts": {
"build": "babel src -d lib",
"cpFlow": "for f in `pwd`/src/*; do cp $f `pwd`/lib/$(basename $f).flow; done",
"prepublish": "npm run build && npm run cpFlow"
},
"keywords": [
"page",
"route",
"router",
"routes",
"pushState",
"yarr",
"history",
"react"
],
"repository": {
"type": "git",
"url": "git://github.com/nmn/yarr.git"
},
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.3",
"babel-plugin-syntax-class-properties": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.8.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.0.1",
"eslint-plugin-standard": "^1.3.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"react-tappable": "^0.8.1"
}
}