-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
76 lines (76 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "d3-hwschematic",
"version": "0.1.6",
"description": "D3.js and ELK based schematic visualizer",
"main": "dist/d3-hwschematic.js",
"scripts": {
"init": "eslint --init",
"build": "node build.js",
"clean": "rm -rf dist/ node_modules/",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "run-script-os",
"test:default": "NODE_ENV=development jest",
"test:windows": "SET NODE_ENV=development&& jest",
"coveralls": "NODE_ENV=development jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"lint": "eslint src test --ignore-pattern tests/coverage*",
"debug-remote": "NODE_ENV=development node --inspect-brk node_modules/.bin/jest --env=node"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Nic30/d3-hwschematic.git"
},
"keywords": [
"d3",
"D3.js",
"elkjs",
"ELK",
"hardware",
"schematic",
"RTL",
"viewer",
"components",
"diagram"
],
"author": "Michal Orsak",
"license": "EPL-1.0",
"bugs": {
"url": "https://github.com/Nic30/d3-hwschematic/issues",
"email" : "[email protected]"
},
"homepage": "https://github.com/Nic30/d3-hwschematic#readme",
"engines" : {
"npm" : ">=8.5.1",
"node" : ">=12.22.9"
},
"dependencies": {
"d3": "^6.5.0",
"elkjs": "^0.8.2"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.12.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"rollup": "^2.33.1",
"rollup-plugin-copy": "^3.3.0",
"run-script-os": "^1.1.3"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/.*"
],
"coverageDirectory": "<rootDir>/tests/coverage",
"coveragePathIgnorePatterns": [
"node_modules/"
],
"verbose": true
},
"publishConfig": {
"access": "public"
}
}