-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.16 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
{
"name": "d3-wave",
"version": "1.1.5",
"description": "D3.js signal wave visualizer",
"main": "dist/d3-wave.js",
"scripts": {
"init": "eslint --init",
"build": "rimraf dist && mkdir dist && NODE_ENV=production rollup -c rollup.config.mjs",
"clean": "rimraf dist/ node_modules/",
"pretest": "npm run build",
"test": "NODE_ENV=development jest",
"coveralls": "NODE_ENV=development jest --coverage && cat ./tests/coverage/lcov.info | coveralls",
"lint": "eslint --fix --ignore-pattern tests/coverage* src/**/*.js tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nic30/d3-wave.git"
},
"keywords": [
"D3.js",
"hardware",
"wave",
"signal",
"RTL",
"viewer",
"GTKWave"
],
"author": "Michal Orsak",
"contributors": [
"Nic30"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Nic30/d3-wave/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/Nic30/d3-wave#readme",
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@types/d3": "^7.4.0",
"d3": "^7.8.4"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.11",
"coveralls": "^3.1.1",
"eslint": "^8.39.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.0",
"rollup": "^3.20.7",
"rollup-plugin-postcss": "^4.0.2",
"ts-jest": "^29.1.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"jest": {
"coverageDirectory": "<rootDir>/tests/coverage",
"verbose": true,
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"d3": "<rootDir>/node_modules/d3/dist/d3.min.js"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"publishConfig": {
"access": "public"
}
}