forked from raczben/fliplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "fliplot",
"publisher": "cs233illinois",
"version": "1.0.0",
"description": "HTML based waveform viewer for HDL simulators",
"private": true,
"directories": {
"test": "test"
},
"author": "Benedek Racz",
"license": "Apache-2.0",
"keywords": [
"vcd",
"waveform",
"waveform-viewer",
"hdl",
"verilog",
"vhdl",
"simulation"
],
"main": "./out/extension.js",
"engines": {
"vscode": "^1.45.0"
},
"activationEvents": [
"onCommand:fliplot.start"
],
"contributes": {
"commands": [
{
"command": "fliplot.start",
"title": "Start fliplot session",
"category": "Fliplot"
}
]
},
"scripts": {
"vscode:prepublish": "npx tsc & npx webpack --mode=production",
"build": "npx tsc & npx webpack --mode=development",
"watch": "npx webpack --mode=development --watch",
"clean": "rm -rf out",
"lint": "npx eslint --ignore-pattern out . || true",
"test": "npx mocha src/test/**/*js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/vscode": "^1.45.0",
"@types/vscode-webview": "^1.45.0",
"awesome-typescript-loader": "^5.2.1",
"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",
"typescript": "^4.6.3",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
}
}