generated from codibre/boilerplate-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.31 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "anypm",
"description": "Use your favorite package manager locally and let npm be used by your CI!",
"version": "0.8.4",
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"engines": {
"node": ">=12"
},
"files": [
"dist",
"apply-nvmrc.sh"
],
"main": "dist/index.js",
"scripts": {
"doc": "npx typedoc",
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"build": "tsc -p tsconfig.build.json",
"test": "jest test/unit",
"test:watch": "jest test/unit --watch",
"test:coverage": "jest test/unit --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest test/e2e",
"version": "scripts/prepare $npm_package_version && git add .",
"postversion": "git push && git push --tags",
"clear": "npm run clear:build && npm run clear:modules",
"clear:build": "del-cli ./dist",
"clear:modules": "del-cli ./node_modules",
"prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint '**/*.ts'",
"lint:style:fix": "eslint '**/*.ts' --fix",
"prepublishOnly": "npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"preset": "ts-jest",
"coverageDirectory": "./coverage",
"collectCoverageFrom": [
"./src/**/*.ts"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest-setup.ts"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/codibre/anypm.git"
},
"homepage": "https://github.com/codibre/anypm#readme",
"bugs": {
"url": "https://github.com/codibre/anypm/issues"
},
"keywords": [
"npm",
"pnpm",
"package manager",
"package",
"manager"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"del-cli": "^3.0.1",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"jest": "^27.4.3",
"jest-callslike": "^0.2.0",
"jest-extended": "^1.2.0",
"prettier": "^2.5.1",
"stream-mock": "^2.0.5",
"ts-jest": "^27.1.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.3"
},
"dependencies": {
"commander": "^8.3.0",
"is-this-a-pigeon": "^0.4.1",
"npm-api": "^1.0.1",
"read-pkg": "^5.2.0",
"which": "^2.0.2"
},
"bin": {
"anypm": "dist/command.js",
"apply-nvmrc": "apply-nvmrc.sh"
}
}