-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.45 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "resedit-cli",
"version": "2.0.1",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"engineStrict": true,
"description": "Command-line tool for editing Windows Resource data in executable binaries",
"bin": {
"resedit": "./dist/cli.js"
},
"type": "module",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"author": "jet",
"license": "MIT",
"homepage": "https://github.com/jet2jet/resedit-js-cli",
"keywords": [
"windows",
"resource",
"cli",
"version",
"icon",
"edit",
"authenticode",
"signtool",
"pe-executable",
"dll"
],
"repository": {
"type": "git",
"url": "https://github.com/jet2jet/resedit-js-cli.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.app.json",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint -c .eslintrc.yml --ext .js,.jsx,.ts,.tsx .",
"lint:eslint:fix": "eslint -c .eslintrc.yml --fix --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "npm run lint:prettier:fix && npm run lint:eslint:fix",
"lint:prettier": "prettier --config ./.prettierrc.yml --check \"**/*.{js,jsx,ts,tsx,yml,json,md}\"",
"lint:prettier:fix": "prettier --config ./.prettierrc.yml --write \"**/*.{js,jsx,ts,tsx,yml,json,md}\"",
"test-base": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test": "npm run test-base -- --config ./jest.config.js",
"version": "node ./tools/updateVersion.js ./src/main/version.ts && git add -A ./src/main/version.ts"
},
"dependencies": {
"cosmiconfig": "^8.1.0",
"loglevel": "^1.8.1",
"node-forge": "^1.3.1",
"pe-library": "^1.0.1",
"resedit": "^2.0.3",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^14.18.36",
"@types/node-forge": "^1.0.1",
"@types/request": "^2.48.5",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"nock": "^13.3.0",
"node-fetch": "^3.3.0",
"prettier": "^2.8.4",
"request": "^2.88.2",
"ts-jest": "^29.0.5",
"typescript": "~4.9.5"
}
}