-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "check-npm-versions",
"version": "1.0.0",
"description": "Enforces \"peer\" npm dependencies in Meteor 1.3 Atmosphere packages.",
"main": "package.js",
"author": "Tom Coleman",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Meteor-Community-Packages/check-npm-versions.git"
},
"bugs": {
"url": "https://github.com/Meteor-Community-Packages/check-npm-versions/issues"
},
"homepage": "https://github.com/Meteor-Community-Packages/check-npm-versions#readme",
"scripts": {
"lint": "eslint ./**/*.ts",
"lint:ts": "tsc --noEmit",
"publish-release": "meteor publish",
"pre-commit": "tsc --noEmit && lint-staged"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/meteor": "^2.9.8",
"@types/semver": "^7.5.8",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"npm run --silent lint"
]
}
}