-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 1.04 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
{
"name": "drone-cloudformation",
"version": "1.0.0",
"description": "Drone plugin for creating/updating or deleting an AWS CloudFormation stack",
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "npm run test:unit && npm run test:component",
"test:unit": "nyc --report-dir ./coverage/unit mocha -r mocha-plugin-highland test/unit.spec.js",
"test:component": "nyc --report-dir ./coverage/component mocha test/component.spec.js",
"posttest": "npm outdated -l || true",
"coverage": "cat ./coverage/unit/lcov.info | coveralls"
},
"author": "Robert Stettner (https://github.com/robertstettner)",
"license": "MIT",
"devDependencies": {
"coveralls": "3.0.0",
"eslint": "4.8.0",
"mocha": "4.0.1",
"mocha-plugin-highland": "0.0.2",
"nyc": "11.2.1",
"rewire": "2.5.2",
"should": "13.1.2",
"should-sinon": "0.0.6",
"sinon": "4.0.1"
},
"dependencies": {
"cfn": "github:svozza/cfn#4ca3ceb446fcff944a52cd0811476f7e6e126650",
"highland": "2.11.1",
"ramda": "0.25.0"
}
}