-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
65 lines (65 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "terraform-plan-parser",
"version": "1.6.0",
"description": "This module provides functionality for parsing stdout from \"terraform plan\" and converting it to JSON that can be more easily analyzed.",
"repository": {
"type": "git",
"url": "https://github.com/lifeomic/terraform-plan-parser.git"
},
"author": "Phil Gates-Idem <phil.gates-idem@lifeomic.com>",
"license": "MIT",
"main": "./work/dist/src/",
"module": "./work/dist/es6/src/",
"jsnext:main": "./work/dist/esnext/src/",
"types": "./work/dist/src/index.d.ts",
"bin": {
"parse-terraform-plan": "./work/dist/src/cli.js"
},
"scripts": {
"compile-src-cjs": "tsc --declaration --declarationDir ./work/dist -p tsconfig-src-cjs.json",
"compile-src-es6": "tsc -p tsconfig-src-es6.json",
"compile-src-esnext": "tsc -p tsconfig-src-esnext.json",
"precompile-src": "rm -rf ./work/dist",
"compile-src": "yarn compile-src-cjs && yarn compile-src-es6 && yarn compile-src-esnext",
"transpile-test-js": "BABEL_ENV=test babel work/dist-test --out-dir work/dist-test --source-maps",
"precompile-test": "rm -rf ./work/dist-test",
"compile-test": "tsc -p tsconfig-test.json && yarn transpile-test-js",
"postcompile-test": "cp -r test/unit/data ./work/dist-test/test/unit/",
"lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"pretest": "yarn lint && yarn compile-test",
"test": "BABEL_ENV=test nyc ava 'work/dist-test/test/**/*.test.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "yarn test",
"build": "yarn compile-src && ./tools/bin/postbuild",
"publish-patch": "yarn build && ./tools/bin/publish patch",
"publish-minor": "yarn build && ./tools/bin/publish minor",
"publish-major": "yarn build && ./tools/bin/publish major"
},
"dependencies": {
"strip-ansi": "^5.0.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@types/node": "^10.0.7",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"chalk": "^2.3.1",
"coveralls": "^3.0.0",
"inquirer": "^6.0.0",
"nyc": "^12.0.1",
"proxyquire": "^2.0.0",
"tslint": "^5.9.1",
"tslint-config-semistandard": "^7.0.0",
"typescript": "^2.7.2"
},
"ava": {
"require": [
"source-map-support/register"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}