forked from raczben/fliplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "fliplot",
"version": "1.0.0",
"description": "HTML based waveform viewer for HDL simulators",
"private": true,
"type": "module",
"directories": {
"test": "test"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"eslint": "^7.11.0",
"jshint": "^2.12.0",
"mocha": "^8.2.1",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"test": "npx mocha js/test/**/*js",
"dev": "webpack --mode development"
},
"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"
}