-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "arnie",
"version": "0.3.8",
"description": "Action hero for backends",
"main": "index.js",
"scripts": {
"lint": "standard 'src/**/*.js' 'test/**/*.js'",
"pretest-disabled": "npm run lint",
"test": "tap 'src/**/*.test.js' --coverage",
"test:one": "tap --coverage",
"test:watch": "watch 'npm test' --ignoreDirectoryPattern='/node_modules/i' --ignoreDotFiles",
"prebuild": "npm test",
"build": "rimraf lib && BABEL_ENV=production babel src/ --out-dir=lib/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxfrigge/arnie.git"
},
"author": "Max Frigge <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxfrigge/arnie/issues"
},
"homepage": "https://github.com/maxfrigge/arnie#readme",
"dependencies": {
"accepts": "^1.3.3",
"babel-runtime": "^6.23.0",
"content-disposition": "^0.5.2",
"content-type": "^1.0.2",
"escape-html": "^1.0.3",
"fresh": "^0.5.0",
"function-tree": "0.5.0-b-alpha.7788270c",
"get-value": "^2.0.6",
"koa-is-json": "^1.0.0",
"mime-types": "^2.1.14",
"path-to-regexp": "^1.7.0",
"set-value": "^0.4.3",
"statuses": "^1.3.1",
"supertest": "^3.0.0",
"type-is": "^1.6.14",
"vary": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"rimraf": "^2.6.1",
"standard": "^9.0.0",
"tap": "^10.3.0",
"watch": "^1.0.2"
}
}