-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "vue-lanes",
"description": "Event-based routing system for Vue.js",
"version": "0.1.0",
"author": "Pierre Bertet <[email protected]> (http://pierrebertet.net/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bpierre/vue-lanes.git"
},
"main": "index.js",
"scripts": {
"test": "browserify test/*.js | testling",
"test-browser": "browserify test/*.js | testling -u",
"cover": "browserify -t coverify test/*.js | testling | coverify"
},
"dependencies": {
"minihash": "^0.0.2",
"miniroutes": "^0.1.0"
},
"devDependencies": {
"browserify": "^3.32.0",
"brfs": "^1.0.0",
"stylus": "^0.42.3",
"tape": "^2.10.2",
"testling": "^1.6.0",
"coverify": "^1.0.6",
"vue": "^0.9.3"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"chrome/25..latest",
"chrome/canary",
"firefox/20..latest",
"firefox/nightly",
"safari/6..latest",
"opera/11.0..latest",
"opera/next",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/4.2..latest"
]
}
}