-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "lambda-boilerplate",
"version": "1.0.0",
"description": "Lambda boiler plate",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lambda-boilerplate"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"dotenv": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.1.1",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"scripts": {
"build": "babel src -d bundle",
"codecov": "NODE_ENV=test NODE_PATH=src nyc mocha report --reporter=text-lcov > coverage.lcov --recursive && codecov",
"coverage": "NODE_ENV=test NODE_PATH=src nyc mocha --recursive",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"test": "NODE_PATH=src NODE_ENV=test mocha --compilers js:babel-core/register --recursive"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"author": "Team Wattellina <[email protected]>",
"license": "Apache-2.0"
}