-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
54 lines (54 loc) · 1.2 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": "micro-cors",
"description": "Simple CORS middleware for Zeit's Micro",
"version": "0.1.1",
"engines": {
"node": ">=6"
},
"repository": {
"url": "https://github.com/possibilities/micro-cors",
"type": "git"
},
"author": "Mike Bannister <[email protected]>",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"license": "MIT",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"test": "ava --verbose src/test.js",
"dev": "ava --verbose --watch src/test.js",
"prepublish": "yarn build",
"lint": "standard",
"pretest": "yarn lint"
},
"devDependencies": {
"async-to-gen": "^1.3.2",
"ava": "^0.19.0",
"babel-cli": "^6.24.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"micro": "^7.3.0",
"request": "^2.85.0",
"request-promise": "^4.2.0",
"rimraf": "^2.6.1",
"standard": "^10.0.0",
"test-listen": "^1.0.1"
},
"ava": {
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
},
"babel": {
"presets": [
"latest",
"stage-0"
]
}
}