-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
144 lines (144 loc) · 5.15 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "node-upgrade-checker",
"version": "0.0.1-alpha.0",
"description": "node cli tool checks if your dependencies are compatible with a desired node package",
"keywords": [
"nuc",
"node",
"upgrade",
"npm",
"yarn",
"nodejs",
"node.js",
"check",
"update",
"lts"
],
"author": "Regev Brody <regevbr@gmail.com>",
"license": "ISC",
"engineStrict": true,
"engines": {
"node": "^10 || ^12 || ^14",
"yarn": "^1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/node-upgrade-checker.git"
},
"os": [
"darwin",
"linux",
"win32"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nuc": "./dist/cli/index.js"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
],
"scripts": {
"envcheck": "node -e \"if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error('Use yarn')\"",
"preinstall": "yarn run envcheck",
"postinstall": "yarn run compile",
"versionupdate": "yarn run ncu --error-level 2 || (yarn run ncu && rm yarn.lock && yarn install)",
"clean:dist": "rm -rf dist && rm -f .buildcache",
"prebuild": "yarn run lint && yarn run clean:dist",
"build": "yarn run tsc -p tsconfig.build.json",
"precompile": "yarn run lint",
"compile": "yarn run tsc -p tsconfig.json",
"pretest": "yarn run lint",
"pretest:unit": "yarn run lint",
"pretest:e2e": "yarn run lint",
"test:unit": "yarn run jest \"test/.*\\.spec\\.ts\"",
"test:e2e": "yarn run jest \"testE2E/.*\\.spec\\.ts\"",
"test:integ": "yarn run jest \"testInteg/.*\\.spec\\.ts\"",
"test": "yarn run jest \"test/.*\\.spec\\.ts\" \"testInteg/.*\\.spec\\.ts\" \"testE2E/.*\\.spec\\.ts\"",
"clean:cover": "rm -rf coverage",
"precover": "yarn run clean:cover && yarn run lint",
"precover:unit": "yarn run clean:cover && yarn run lint",
"precover:e2e": "yarn run clean:cover && yarn run lint",
"cover:e2e": "yarn run jest --coverage \"testE2E/.*\\.spec\\.ts\"",
"cover:integ": "yarn run jest --coverage \"testInteg/.*\\.spec\\.ts\"",
"cover:unit": "yarn run jest --coverage \"test/.*\\.spec\\.ts\"",
"cover": "yarn run jest --coverage \"test/.*\\.spec\\.ts\" \"testInteg/.*\\.spec\\.ts\" \"testE2E/.*\\.spec\\.ts\"",
"postlint": "yarn run format:check && yarn run check:spelling",
"lint": "yarn run eslint . --ext .ts",
"lint:fix": "yarn run eslint . --fix --ext .ts",
"pre-commit": "yarn run lint-staged",
"pre-push": "yarn run lint",
"format:fix": "yarn run prettier --write \"./**/*.{ts,js,json,md}\"",
"format:check": "yarn run prettier --list-different \"./**/*.{ts,js,json,md}\"",
"check:spelling": "cspell --config=.cspell.json \"**/*.{md,ts,js}\"",
"generate-contributors": "yarn run ts-node --transpile-only --project ./tsconfig.json ./tools/generateContributors.ts && yarn run all-contributors generate",
"generate-migrations": "yarn run ts-node --transpile-only --project ./tsconfig.json node_modules/.bin/typeorm migration:generate --config tools/getOrmConnection.ts --name autoGeneratedMigration",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"docs:changelog": "yarn run changelog --allow-unknown",
"mutation-test": "yarn run stryker run"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@stryker-mutator/core": "^3.2.4",
"@stryker-mutator/jest-runner": "^3.2.4",
"@stryker-mutator/typescript": "^3.2.4",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^25.2.3",
"@types/jest-when": "^2.7.1",
"@types/node": "^14.0.6",
"@types/node-fetch": "^2.5.7",
"@types/pacote": "^11.1.0",
"@types/semver": "^7.2.0",
"@types/shell-quote": "^1.6.2",
"@types/tmp": "^0.2.0",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"all-contributors-cli": "^6.15.0",
"cspell": "^4.0.63",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"expect": "^26.0.1",
"generate-changelog": "^1.8.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-mock-extended": "^1.0.8",
"jest-serial-runner": "file:./tools/jest-serial-runner",
"jest-when": "^2.7.2",
"lint-staged": "^10.2.7",
"mock-spawn": "^0.2.6",
"node-fetch": "^3.1.1",
"npm-check-updates": "^6.0.1",
"prettier": "^2.0.5",
"semver": "^7.3.2",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.2",
"ts-toolbelt": "^6.9.4",
"typescript": "^3.9.4"
},
"dependencies": {
"array-flat-polyfill": "~1.0.1",
"axios": "~0.21.1",
"chalk": "~4.0.0",
"consola": "~2.12.2",
"cross-spawn": "~7.0.3",
"figures": "~3.2.0",
"inversify": "~5.0.1",
"moment": "~2.26.0",
"pacote": "~11.1.10",
"reflect-metadata": "~0.1.13",
"shell-quote": "~1.7.2",
"simple-git": "~2.5.0",
"sqlite3": "~4.2.0",
"tmp": "~0.2.1",
"ts-type-guards": "~0.6.1",
"typeorm": "~0.2.25",
"yaml": "~1.10.0",
"yargs-parser": "~18.1.3"
}
}