forked from cludden/tf-codebuild-github-status
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tf-codebuild-github-status",
"version": "1.0.0",
"description": "a node.js lambda function that updates github commit statuses based on codebuild events",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/* && webpack",
"coverage": "nyc --reporter=lcov npm test",
"lint": "eslint ./lib",
"release": "standard-version",
"sec": "nsp check --output summary",
"test": "mocha --recursive test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cludden/tf-codebuild-github-status.git"
},
"keywords": [],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/cludden/tf-codebuild-github-status/issues"
},
"homepage": "https://github.com/cludden/tf-codebuild-github-status#readme",
"dependencies": {
"app-container": "^1.0.0",
"aws-sdk": "^2.149.0",
"axios": "^0.17.0",
"bunyan": "^1.8.12",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.0",
"source-map-support": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"
},
"nyc": {
"require": [
"babel-register"
],
"temp-directory": "./coverage/.nyc_output"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nsp": "^2.8.1",
"nyc": "^11.3.0",
"sinon": "^2.4.1",
"standard-version": "^4.0.0",
"webpack": "^2.5.1",
"yazl": "^2.4.2"
}
}