-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 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
{
"name": "frock",
"version": "4.1.3",
"description": "A plugin-based tool for running fake HTTP and socket services.",
"main": "lib/index.js",
"bin": {
"frock": "./bin/frock.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"prepublish": "npm test",
"lint": "standard **/*.js *.js",
"start": "npm run build -- --watch",
"test": "tape tests/**/*.js tests/*.js && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbanairship/frock.git"
},
"author": "Urban Airship",
"contributors": [
"Nathan Wittstock <[email protected]>",
"Jesse Keane <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/urbanairship/frock/issues"
},
"homepage": "https://github.com/urbanairship/frock#readme",
"devDependencies": {
"os-tmpdir": "^1.0.2",
"portfinder": "^1.0.13",
"proxyquire": "^2.0.1",
"standard": "^11.0.1",
"tape": "^4.9.0",
"through": "^2.3.8"
},
"dependencies": {
"arrify": "^1.0.1",
"bole": "^3.0.2",
"commuter": "^2.0.1",
"deter": "^2.0.0",
"evidence": "^1.0.3",
"fs-find-root": "^2.0.0",
"garnish": "^5.2.0",
"interpret": "^1.2.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"rechoir": "^0.7.0",
"resolve": "^1.6.0",
"semver": "^5.5.0",
"server-destroy": "^1.0.1"
}
}