-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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": "semantic-release-npm-deprecate",
"version": "1.0.34",
"description": "Semantic Release NPM Deprecate Plugin",
"keywords": [
"semantic-release",
"semantic-release-plugin",
"deprecate",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpoehnelt/semantic-release-npm-deprecate.git"
},
"license": "Apache-2.0",
"author": {
"name": "Justin Poehnelt",
"email": "jpoehnelt@google.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"scripts": {
"prepare": "tsc",
"format": "eslint --fix src/**/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"dependencies": {
"@semantic-release/npm": "^9.0.0",
"lodash": "^4.17.21",
"tempy": "<2.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.176",
"@types/node": "^18.0.0",
"@types/semantic-release": "^17.2.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^27.0.1",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}