-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "@amanda-mitchell/node-project-scripts",
"version": "1.0.0",
"description": "Common scripts and configuration for my node projects.",
"main": "index.js",
"repository": "https://github.com/amanda-mitchell/node-project-scripts",
"author": "Amanda Mitchell",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"*.cjs",
"scripts/*.js",
"tsconfig.json",
"jest-preset.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"_install": "node scripts/install.js",
"prepublishOnly": "pinst --enable",
"postpublish": "pinst --disable"
},
"dependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.11.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@tsconfig/node18": "^18.2.1",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"husky": "4.x",
"jest": "^29.6.4",
"lint-staged": "^15.0.1",
"pkg-dir": "^8.0.0",
"prettier": "3.5.3",
"semantic-release": "^24.2.0",
"ts-jest": "29.2.6",
"typescript": "5.8.2"
},
"devDependencies": {
"pinst": "^3.0.0"
}
}