forked from ditrit/terrator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "terrator-plugin",
"version": "0.7.1",
"description": "Terraform plugin for Leto-Modelizer.",
"main": "dist/terrator-plugin.js",
"exports": "./dist/terrator-plugin.js",
"scripts": {
"build": "webpack",
"build:resources": "node scripts/generateResources.js",
"build:docs": "jsdoc --readme README.md --package package.json -r ./src/ -c jsdoc.config.json -d docs",
"lint": "eslint --max-warnings=0 --ext .js src tests",
"lint:fix": "eslint --max-warnings=0 --fix --ext .js src tests",
"lint:report": "eslint --max-warnings=0 --ext .js src -f json-relative > eslint.json",
"prepare:docs": "sed -i 's#taffydb#@jsdoc/salty#g' node_modules/better-docs/publish.js",
"test": "jest",
"test:coverage": "jest --coverage",
"parser:generate": "node scripts/generate_parser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ditrit/terrator-plugin.git"
},
"keywords": [
"Leto-modelizer",
"terrator-plugin",
"terraform"
],
"author": "Vincent Moittie <[email protected]>",
"license": "Mozilla Public License 2.0",
"bugs": {
"url": "https://github.com/ditrit/terrator-plugin/issues"
},
"homepage": "https://github.com/ditrit/terrator-plugin#readme",
"dependencies": {
"antlr4": "=4.13.1",
"leto-modelizer-plugin-core": "github:ditrit/leto-modelizer-plugin-core#0.22.0",
"nunjucks": "=3.2.4"
},
"devDependencies": {
"@babel/core": "=7.23.2",
"@babel/preset-env": "=7.23.2",
"babel-jest": "=29.7.0",
"babel-loader": "=9.1.3",
"better-docs": "=2.7.2",
"eslint": "=8.51.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-import": "=2.28.1",
"eslint-plugin-jest": "=27.4.2",
"eslint-plugin-jsdoc": "=46.8.2",
"eslint-webpack-plugin": "=4.0.1",
"jest": "=29.7.0",
"jest-environment-jsdom": "=29.7.0",
"jest-sonar-reporter": "=2.0.0",
"jsdoc": "=4.0.2",
"webpack": "=5.89.0",
"webpack-cli": "=5.1.4"
}
}