-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "pnpm-ci-tools",
"version": "2.0.2",
"description": "CI commands for pnpm",
"keywords": [
"pnpm",
"audit"
],
"repository": {
"type": "git",
"url": "https://github.com/drtyh2o/pnpm-ci-tools.git"
},
"license": "MIT",
"author": "Michael Durling",
"main": "dist/index.js",
"bin": {
"pnpm-ci": "./bin/pnpm-ci-tools",
"pnpm-ci-tools": "./bin/pnpm-ci-tools"
},
"files": [
"dist/",
"bin/"
],
"scripts": {
"build": "tsc --listEmittedFiles",
"clean": "pnpm clean:only && pnpm install",
"clean:only": "git clean -fdX",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm lint:audit && pnpm lint:eslint '**/*.ts' && pnpm lint:prettier '**/package.json'",
"lint:audit": "ts-node src/index.ts audit",
"lint:eslint": "eslint --ignore-path=.gitignore",
"lint:prettier": "prettier --check",
"prepare": "husky install",
"test": "pnpm lint"
},
"dependencies": {
"commander": "11.0.0"
},
"devDependencies": {
"@types/node": "16.11.9",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-log": "1.2.7",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}