-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 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
{
"name": "lambda-wrap",
"version": "3.0.0",
"description": "AWS Serverless wrapper for async generators",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pragonauts/lambda-wrap.git"
},
"scripts": {
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:unit": "mocha ./test/**/*.test.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:coverage": "nyc --reporter=html mocha --opts ./mocha.opts ./test/**/*.test.js && nyc report",
"test:coverage:threshold": "nyc check-coverage --lines 80 --functions 70 --branches 60",
"test:lint": "eslint ./lib/**/*.js ./test/**/*.js",
"doc": "node ./bin/makeApiDoc.js"
},
"author": "Pragonauts (https://pragonauts.com)",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-mocha": "^0.4.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsdoc": "^3.6.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.7.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.5",
"nyc": "^11.6.0"
}
}