-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.38 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.38 KB
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
{
"name": "can-route-react",
"version": "0.1.2",
"description": "State-based routing with React components.",
"homepage": "https://github.com/icanjs/can-route-react",
"repository": {
"type": "git",
"url": "git://github.com/icanjs/can-route-react.git"
},
"author": {
"name": "Marshall Thompson",
"email": "marshall@creativeideal.net",
"url": "https://github.com/marshallswain"
},
"scripts": {
"preversion": "npm test && npm run build",
"version": "git commit -am \"Update dist for release\" && git checkout -b release && git add -f dist/",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run lint && npm run testee",
"lint": "semistandard --fix",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "node build.js",
"document": "documentjs",
"develop": "done-serve --static --develop --port 8080"
},
"main": "src/can-route-react",
"semistandard": {
"env": [
"mocha"
]
},
"keywords": [
"react-view-models",
"react",
"component",
"donejs",
"React Router",
"can-route"
],
"steal": {
"main": "can-route-react",
"configDependencies": [
"live-reload"
],
"npmIgnore": [
"documentjs",
"testee",
"generator-donejs",
"donejs-cli",
"steal-tools"
],
"plugins": [
"steal-css",
"steal-less",
"steal-react-jsx"
],
"directories": {
"lib": "src"
},
"ext": {
"svg": "steal-svg"
}
},
"dependencies": {
"can-component": "^3.0.4",
"can-define": "^1.0.8",
"is-subset": "^0.1.1",
"lodash.isempty": "^4.4.0",
"lodash.some": "^4.6.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-view-models": "^0.0.7",
"steal-react-jsx": "^0.0.3"
},
"devDependencies": {
"assert": "^1.4.1",
"can-route": "^3.0.6",
"can-route-pushstate": "^3.0.1",
"can-view-autorender": "^3.0.3",
"done-serve": "^0.2.0",
"semistandard": "^9.1.0",
"steal": "^1.0.4",
"steal-css": "^1.0.0",
"steal-less": "^1.0.1",
"steal-mocha": "^1.0.0",
"steal-qunit": "^1.0.0",
"steal-tools": "^1.0.1",
"testee": "^0.3.0"
}
}