-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "alpr",
"version": "0.3.3",
"description": "A hapi inspired router for AWS Lambda proxy functions",
"main": "index.js",
"scripts": {
"test": "npm run-script lint && nyc ava test -s && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/*.js test/*.js",
"build": "babel src -d build && cp package.json build/package.json && cp README.md build/README.md"
},
"repository": {
"url": "https://github.com/aceew/lambda-proxy-router",
"type": "git"
},
"keywords": [
"aws",
"lambda",
"proxy",
"router"
],
"author": "Aaron Williams <a.aceew.me>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"coveralls": "^2.11.14",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"nyc": "^8.3.2",
"sinon": "^2.3.5"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
}
}