-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "rpf-helper",
"version": "1.0.0",
"description": "A small utility to help with creation of RPF files",
"main": "index.js",
"scripts": {
"lint": "npm run format && npm run eslint -- --fix",
"format": "npx prettier --write src/**/*.{js,jsx,ts,tsx}",
"eslint": "npx eslint --cache --ext .js,.jsx,.ts,.tsx src",
"eslint:dump": "eslint --print-config ./.eslintrc.js",
"build": "npm run lint && npx tsc",
"dev": "npm run build && node ./bin",
"package": "npm run build && npx pkg ./bin/index.js --targets win --out-path ./RPF-Packager"
},
"author": "test137e29b",
"license": "ISC",
"devDependencies": {
"@types/cli-progress": "^3.9.1",
"@types/fs-extra": "^9.0.9",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"eslint": "^7.3.0",
"eslint-config-airbnb-typescript-prettier": "^2.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unused-imports": "^0.1.3",
"pkg": "^5.8.1",
"prettier": "^2.0.5"
},
"dependencies": {
"cli-progress": "^3.9.0",
"fs-extra": "^9.1.0",
"moment": "^2.29.1",
"typescript": "^3.8.3"
},
"eslintIgnore": [
"node_modules"
]
}