-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 1.67 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
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
{
"name": "mixdown-router",
"version": "7.0.0",
"description": "Router for mixdown.js",
"main": "index.js",
"scripts": {
"test": "mocha -R spec -u tdd test/tests/*.js && grunt browser && browserify ./test/fixture/browser/_main.js > ./test/fixture/browser/main.js && mocha-phantomjs -s local-to-remote-url-access=yes -R spec -u tdd http://localhost:8282/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/mixdown/router.git"
},
"keywords": [
"mixdown",
"router",
"plugin",
"broadway",
"middleware"
],
"dependencies": {
"async": "^0.9.0",
"express-useragent": "0.1.7",
"formidable": "^1.0.15",
"hammock": "^1.0.1",
"lodash": "^2.4.1",
"mixdown-app": "^3.0.4",
"mkdirp": "^0.5.0",
"node-uuid": "^1.4.1",
"substr-polyfill": "0.0.2",
"through2": "^0.5.1"
},
"devDependencies": {
"browserify": "^4.2.1",
"grunt": "^0.4.5",
"grunt-http-server": "0.0.5",
"mocha": "^1.20.1"
},
"author": "Tommy Messbauer",
"license": "MIT",
"readmeFilename": "README.md",
"testling": {
"browsers": {
"ie": [
6,
7,
8,
9,
10
],
"ff": [
24,
25,
"nightly"
],
"chrome": [
28,
29,
30,
31,
"canary"
],
"safari": [
"5.0.5",
5.1
],
"android-browser": [
4.2
],
"opera": [
17,
"next"
],
"iphone": [
6
],
"ipad": [
6
]
},
"files": [
"test/tests/init.js",
"test/tests/routetable.js",
"test/tests/urls.js"
]
}
}