-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.09 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "xdsmjs",
"version": "2.0.0",
"description": "XDSM diagram generator",
"main": "src/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"src/**/*.js",
"*.css"
],
"directories": {
"example": "examples"
},
"scripts": {
"lint": "eslint ./src/* || true",
"lintfix": "eslint --fix ./src/* || true",
"build": "webpack --progress --mode=production --config webpack.config.cjs",
"watch": "webpack --progress --watch",
"server": "webpack-dev-server --open",
"test": "npx tape test/xdsmjs-test.mjs | faucet",
"webpack": "webpack"
},
"repository": "git+https://github.com/OneraHub/XDSMjs.git",
"keywords": [
"XDSM",
"MDO"
],
"author": "Remi Lafage",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/OneraHub/XDSMjs/issues"
},
"homepage": "https://github.com/OneraHub/XDSMjs#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.18.9",
"babel-core": "^7.0.0-bridge",
"babel-loader": "^8.0.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.2.0",
"faucet": "0.0.4",
"tape": "^5.6.3",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.50.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"d3-color": "^3.1.0",
"d3-fetch": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1"
},
"eslintConfig": {
"extends": [
"google"
],
"settings": {
"react": {
"version": "detect"
}
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"commonjs": true,
"es6": true
},
"rules": {
"max-len": [
"error",
120
],
"quotes": "off",
"no-var": "off",
"linebreak-style": "off",
"require-jsdoc": "off",
"brace-style": "off"
}
}
}