-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "rackspace-files-headers-updater",
"version": "1.1.5",
"main": "./lib/cli.js",
"author": "Oleksandr Danylchenko",
"license": "MIT",
"scripts": {
"startDev": "tsnd --respawn --files -r @babel/register --inspect -- src/cli.ts -p wingboot/barnasby/210506-1/",
"start": "npm run build && node .",
"build": "tsc -p .",
"local": "npm i -g && updater",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"typecheck": "tsc",
"lint:base": "eslint --ext .js,.json,.ts",
"lint": "yarn lint:base src"
},
"bin": {
"updater": "lib/cli.js"
},
"lint-staged": {
"src/**/*.{ts,js,json}": [
"yarn lint:base --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"engines": {
"node": ">=12"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^6.2.0",
"figlet": "^1.5.0",
"node-fetch": "^2.6.1",
"ora": "^5.1.0",
"path": "^0.12.7",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@types/chalk": "^2.2.0",
"@types/clear": "^0.1.1",
"@types/commander": "^2.12.2",
"@types/dotenv": "^8.2.0",
"@types/figlet": "^1.2.1",
"@types/node": "^14.6.3",
"@types/node-fetch": "^2.5.7",
"@types/ora": "^3.2.0",
"@types/yargs": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
}
}