-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.32 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
69
70
71
{
"name": "@ditrit/leto-modelizer-plugin-core",
"version": "0.28.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": "MPL-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.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "=7.25.3",
"@badeball/cypress-cucumber-preprocessor": "=20.1.2",
"@cypress/browserify-preprocessor": "=3.0.2",
"babel-jest": "=29.7.0",
"babel-loader": "=9.1.3",
"better-docs": "=2.7.3",
"cypress": "=13.13.3",
"cypress-real-events": "=1.13.0",
"eslint": "=8.56.0",
"eslint-config-airbnb-base": "=15.0.0",
"eslint-formatter-json-relative": "=0.1.0",
"eslint-plugin-cypress": "=3.5.0",
"eslint-plugin-import": "=2.29.1",
"eslint-plugin-jsdoc": "=50.2.2",
"eslint-plugin-vue": "^9.27.0",
"eslint-watch": "=8.0.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"
},
"dependencies": {
"d3": "=7.9.0",
"d3-hierarchy": "=3.1.2",
"nunjucks": "=3.2.4",
"web-worker": "=1.3.0"
},
"directories": {
"doc": "docs",
"test": "tests"
}
}