-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
50
{
"name": "codepipeline-s3-package",
"version": "2.0.2",
"description": "Provides ability to do AWS S3 source updates for AWS Codepipeline",
"keywords": [
"aws",
"codepipeline",
"s3",
"release"
],
"author": "Mikko Tikkanen <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/allermedia/codepipeline-s3-package.git"
},
"bugs": {
"url": "https://github.com/allermedia/codepipeline-s3-package/issues"
},
"homepage": "https://github.com/allermedia/codepipeline-s3-package#readme",
"main": "index.js",
"bin": {
"codepipeline-s3-package": "./bin/codepipeline-s3-package.js"
},
"dependencies": {
"async": "^3.0.1",
"audit-ci": "^2.0.1",
"aws-sdk": "2.475.0",
"commander": "^2.20.0",
"glob": "^7.1.4",
"jszip": "^3.2.1",
"md5": "^2.2.1"
},
"devDependencies": {
"aws-sdk-mock": "^4.4.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5"
},
"scripts": {
"preversion": "npm test",
"test": "npm-run-all test:*",
"test:code": "eslint .",
"test:unit": "cross-env NODE_ENV=testing mocha tests/ --recursive --check-leaks",
"test:audit": "audit-ci --high"
}
}