generated from ditrit/leto-modelizer-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.06 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.06 KB
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
66
{
"name": "@ditrit/terrator-plugin",
"version": "0.12.2",
"description": "Terraform plugin for Leto-Modelizer.",
"main": "dist/terrator-plugin.js",
"exports": {
".": {
"development": "./src",
"default": "./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 <moittie.vincent@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ditrit/terrator-plugin/issues"
},
"homepage": "https://github.com/ditrit/terrator-plugin#readme",
"dependencies": {
"antlr4": "=4.13.2",
"nunjucks": "=3.2.4"
},
"devDependencies": {
"@babel/core": "=7.25.2",
"@babel/preset-env": "=7.25.3",
"babel-jest": "=29.7.0",
"babel-loader": "=9.1.3",
"better-docs": "=2.7.3",
"eslint": "=8.56.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-import": "=2.29.1",
"eslint-plugin-jest": "=28.8.0",
"eslint-plugin-jsdoc": "=50.2.2",
"eslint-webpack-plugin": "=4.2.0",
"jest": "=29.7.0",
"jest-environment-jsdom": "=29.7.0",
"jest-sonar-reporter": "=2.0.0",
"jsdoc": "=4.0.3",
"webpack": "=5.93.0",
"webpack-cli": "=5.1.4"
},
"peerDependencies": {
"@ditrit/leto-modelizer-plugin-core": "=0.28.0"
}
}