-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 784 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 784 Bytes
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
{
"name": "clrparser",
"version": "1.0.0",
"description": "A simple CLR parser",
"main": "index.js",
"scripts": {
"build": "webpack-cli",
"watch": "webpack-cli --watch",
"docs": "typedoc"
},
"author": "silwalanish <silwalanish@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/jquery": "^3.3.31",
"@types/popper.js": "^1.11.0",
"css-loader": "^3.4.2",
"style-loader": "^1.1.2",
"ts-loader": "^6.2.1",
"typedoc": "^0.16.2",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"bootstrap": "^4.4.1",
"jquery": "^3.4.1",
"popper.js": "^1.16.0",
"vis-network": "^6.5.0"
}
}