forked from ditrit/terrator-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.95 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.2.0",
"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 --ext .js src",
"lint:fix": "eslint --fix --ext .js src",
"lint:report": "eslint --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.11.0",
"leto-modelizer-plugin-core": "github:ditrit/leto-modelizer-plugin-core#0.15.2",
"nunjucks": "=3.2.4"
},
"devDependencies": {
"@babel/core": "=7.21.8",
"@babel/preset-env": "=7.21.5",
"babel-jest": "=29.5.0",
"babel-loader": "=9.1.2",
"better-docs": "=2.7.2",
"eslint": "=8.40.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-import": "=2.27.5",
"eslint-plugin-jest": "=27.2.1",
"eslint-plugin-jsdoc": "=44.0.1",
"eslint-webpack-plugin": "=4.0.1",
"jest": "=29.5.0",
"jest-environment-jsdom": "=29.5.0",
"jest-sonar-reporter": "=2.0.0",
"jsdoc": "=4.0.2",
"webpack": "=5.82.0",
"webpack-cli": "=5.1.1"
}
}