forked from ditrit/leto-modelizer-plugin-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.3 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
66
67
68
{
"name": "leto-modelizer-plugin-core",
"version": "0.22.0",
"description": "Library that contains all models for modelling tools in Leto's projects.",
"main": "dist/leto-modelizer-plugin-core.js",
"exports": {
".": {
"development": "./src",
"default": "./dist/leto-modelizer-plugin-core.js"
}
},
"scripts": {
"build": "webpack",
"build:docs": "jsdoc --readme README.md --package package.json -r ./src/ -c jsdoc.config.json -d docs",
"prepare:docs": "sed -i 's#taffydb#@jsdoc/salty#g' node_modules/better-docs/publish.js",
"demo": "npm --prefix ./demo install && npm --prefix ./demo run demo",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:report": "eslint src -f json-relative > eslint.json",
"lint:watch": "esw --no-ignore -w src",
"test": "jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:e2e": "cypress run --spec **/*.feature"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ditrit/leto-modelizer-plugin-core.git"
},
"author": "Vincent Moittie",
"license": "Mozilla Public License Version 2.0",
"bugs": {
"url": "https://github.com/ditrit/leto-modelizer-plugin-core/issues"
},
"homepage": "https://github.com/ditrit/leto-modelizer-plugin-core#readme",
"devDependencies": {
"@babel/core": "=7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "=7.23.3",
"@badeball/cypress-cucumber-preprocessor": "=19.1.1",
"@cypress/browserify-preprocessor": "=3.0.2",
"babel-jest": "=29.7.0",
"babel-loader": "=9.1.3",
"better-docs": "=2.7.2",
"cypress": "=13.5.1",
"cypress-real-events": "=1.11.0",
"eslint": "=8.53.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-cypress": "=2.15.1",
"eslint-plugin-import": "=2.29.0",
"eslint-plugin-jsdoc": "=46.9.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-watch": "=8.0.0",
"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"
},
"dependencies": {
"d3": "=7.8.5",
"d3-hierarchy": "=3.1.2",
"elkjs": "^0.8.2",
"nunjucks": "=3.2.4",
"web-worker": "=1.2.0"
}
}