-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 KB
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
{
"name": "dependency-downgrader",
"version": "1.3.0",
"description": "",
"bin": "lib/script.js",
"scripts": {
"build:shebang": "echo '#!/usr/bin/env node' > lib/script.js && cat lib/index.js >> lib/script.js",
"build:typescript": "tsc",
"build": "npm run build:typescript && npm run build:shebang",
"lint:eslint": "eslint --fix --cache . --ext ts",
"lint:prettier": "prettier --write **/*.ts *.ts",
"lint": "npm run lint:eslint && npm run lint:prettier",
"prepublishOnly": "npm run build",
"preversion": "npm run test",
"test": "npm run lint"
},
"author": "Rustam SecondFry Gubaydullin <secondfry+npm@gmail.com>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/async": "^3.2.13",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2"
},
"repository": "github:secondfry/dependency-downgrader",
"dependencies": {
"async": "^3.2.3"
}
}