-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 KB
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
55
56
{
"name": "lk-lambda-cli",
"version": "1.0.0",
"description": "Lambda boilerplate cli tool",
"main": "lib/index.js",
"bin": {
"lk-lambda-cli": "lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lk-lambda-cli"
},
"dependencies": {
"axios": "^0.15.2",
"babel-polyfill": "^6.9.1",
"dashify": "^0.2.2",
"fs-extra": "^0.30.0",
"vorpal": "^1.11.4"
},
"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",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib coverage",
"cli": "npm run build && NODE_PATH=lib node lib/index.js",
"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",
"prepublish": "npm run clean && npm run build",
"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 <wattellina@mondora.com>",
"license": "Apache-2.0"
}