-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "@cda0/terrajs",
"version": "0.6.1",
"description": "A node interface to Terraform",
"main": "src/index.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:integration": "mocha ./test/integration/integration.test.js",
"test:unit": "mocha ./test/unit/**/*.test.js",
"coverage": "nyc npm run test:unit",
"lint": "eslint ./src/**/*.js ./test/**/*.js ./example.js",
"ci": "npm run lint && npm run coverage"
},
"repository": "github:cda0/terrajs",
"publishConfig": {
"access": "public"
},
"author": "Craig Anderson <craig.anderson0@gmail.com> (https://github.com/cda0)",
"contributors": [
"Willem Le Roux <willem@avantgardeweb.co.uk> (https://github.com/hofnarwillie)",
"Fraser Davidson <fraser@fdavidson.com> (https://github.com/frasdav)",
"Chris Forbes <git@chrisforbes.dev> (https://github.com/kitforbes)"
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
},
"dependencies": {
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"handlebars": "^4.7.7",
"semver": "^7.3.5",
"shelljs": "^0.8.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"testdouble": "^3.16.1"
}
}