forked from eu-evops/terraform-hcl-parser-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"name": "@evops/hcl-terraform-parser",
"version": "1.0.0",
"description": "HLC parser for Terraform HLC modules",
"main": "index.js",
"directories": {
"tests": "tests",
"dist": "dist"
},
"files": [
"dist/**"
],
"scripts": {
"build": "rm -fr ./vendor/src && ln -s ../vendor/ ./vendor/src && GOPATH=$PWD/vendor gopherjs build . -o dist/index.js",
"pretest": "npm run build",
"test": "npx mocha $(find . -name '*.spec.js' -not -path './node_modules/*')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eu-evops/terraform-hcl-parser-node.git"
},
"keywords": [
"terraform",
"hlc",
"parser"
],
"author": "Stanislaw Wozniak",
"license": "MIT",
"bugs": {
"url": "https://github.com/eu-evops/terraform-hcl-parser-node/issues"
},
"homepage": "https://github.com/eu-evops/terraform-hcl-parser-node#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"supertest": "^6.0.1"
}
}