-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.56 KB
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
{
"name": "fliplot",
"version": "1.0.0",
"description": "HTML based waveform viewer for HDL simulators",
"private": true,
"type": "module",
"directories": {
"test": "test"
},
"dependencies": {
"http-server": "^14.1.1",
"jquery": "^3.7.1",
"jquery-contextmenu": "^2.9.2",
"jquery-ui": "^1.14.1",
"jstree": "^3.3.17"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-inject": "^5.0.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^30.0.1",
"babel-loader": "^8.2.2",
"eslint": "^7.11.0",
"jest": "^30.0.1",
"jshint": "^2.12.0",
"prettier": "^3.6.2",
"puppeteer": "^24.10.2",
"start-server-and-test": "^2.0.12",
"vite": "^6.3.5"
},
"scripts": {
"test": "jest --coverage",
"start-server": "npx vite",
"ssat": "start-server-and-test start-server http://localhost:5173 test",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raczben/fliplot.git"
},
"keywords": [
"vcd",
"waveform",
"waveform-viewer",
"hdl",
"verilog",
"vhdl",
"simulation"
],
"author": "Benedek Racz",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/raczben/fliplot/issues"
},
"homepage": "https://github.com/raczben/fliplot#readme",
"prettier": {
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"tabWidth": 2,
"printWidth": 100
}
}