-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sdp-analyzer",
"version": "0.4.7",
"license": "MIT",
"homepage": "https://github.com/narol1024/sdp-analyzer#readme",
"author": "narol <[email protected]> (https://github.com/narol1024)",
"bugs": {
"url": "https://github.com/narol1024/sdp-analyzer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/narol1024/sdp-analyzer.git"
},
"main": "dist/index.js",
"bin": "dist/bin/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build:version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc --project tsconfig.build.json",
"build:clean": "rm -rf tsconfig.build.tsbuildinfo && rm -rf ./dist",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:ci": "npm run test -- --colors --coverage --ci --coverageReporters=\"json-summary\"",
"lint": "eslint --ext .ts,.js .",
"format": "prettier \"./**\" --write --ignore-unknown",
"format:check": "prettier \"./**\" --ignore-unknown --check",
"release": "release-it"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"jsonfile": "^6.1.0",
"node-fetch": "^2.x",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@release-it/conventional-changelog": "^5.0.0",
"@jest/globals": "^28.0.0",
"@jest/types": "^28.0.0",
"@types/jest": "^27.4.1",
"@types/jsonfile": "^6.1.4",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"release-it": "^15.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"hooks": {
"after:bump": [
"npm run build:version",
"npm run build"
]
},
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}