-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "lh-worker",
"version": "1.0.0",
"description": "Build lambda functions and upload them to the Lambda Hub",
"main": "lib/lh-worker.js",
"scripts": {
"build": "babel src -d lib",
"clean": "rimraf lib coverage",
"coverage": "env NODE_ENV=test env NODE_PATH=src babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"dev": "npm test -- --watch",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "env NODE_ENV=test env NODE_PATH=src mocha --compilers js:babel-core/register --recursive test"
},
"author": "Paolo Scanferla <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lh-worker.git"
},
"bugs": {
"url": "https://github.com/lk-architecture/lh-worker/issues"
},
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.1.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"ramda": "^0.21.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"bunyan": "^1.8.0",
"lodash.last": "^3.0.0",
"yargs": "^4.4.0"
}
}