-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "scout",
"version": "0.5.2",
"description": "Scout Decompiler",
"main": "scout.js",
"repository": {
"type": "git",
"url": "https://github.com/x87/scout.git"
},
"scripts": {
"lint": "eslint ./src",
"build": "webpack --config webpack.node.config.js",
"build-web": "webpack --config webpack.web.config.js",
"dev": "npm run build -- --watch",
"test": "jest"
},
"keywords": [],
"author": "Seemann",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.4.0",
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"jest": "29.4.3",
"jest-extended": "3.2.4",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"webpack": "^5.76.2",
"webpack-cli": "5.0.1"
},
"dependencies": {
"browser-or-node": "^2.1.1",
"commander": "10.0.0",
"eol": "0.9.1",
"format": "^0.2.2",
"node-fetch": "2.6.9"
}
}