-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 1.39 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
{
"name": "pipeline-router",
"version": "1.2.7",
"main": "index",
"description": "Simplified and fast routing for your server without an accompanying framework.",
"keywords": [
"node",
"router",
"routing",
"director",
"express"
],
"author": {
"name": "Tommy Messbauer",
"email": "tom.messbauer@gmail.com",
"twitter": "tommymessbauer"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:tommymessbauer/pipeline-router.git"
},
"directories": {
"tests": "tests"
},
"engines": {
"node": ">=0.6.0"
},
"scripts": {
"test": "mocha -R spec -u tdd tests/*.js"
},
"dependencies": {
"formidable": "1.0.14",
"guid": "0.0.11",
"hammock": "~0.1.5",
"lodash": "~2.4.1",
"mkdirp": "^0.5.0",
"node-pipeline": "~1.0.1"
},
"devDependencies": {
"optimist": "*",
"mocha": "~1.14.0"
},
"optionalDependencies": {},
"testling": {
"browsers": {
"ie": [
8,
9,
10
],
"ff": [
25,
"nightly"
],
"chrome": [
31,
"canary"
],
"safari": [
5.1
],
"android-browser": [
4.2
],
"opera": [
17,
"next"
],
"iphone": [
6
],
"ipad": [
6
]
},
"harness": "mocha-tdd",
"files": "tests/*.js"
}
}