-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "semantic-release-interval",
"version": "1.0.46",
"description": "Semantic Release Interval Plugin",
"keywords": [
"semantic-release",
"semantic-release-plugin",
"calver",
"interval"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpoehnelt/semantic-release-interval.git"
},
"license": "Apache-2.0",
"author": {
"name": "Justin Poehnelt",
"email": "[email protected]"
},
"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": {
"dayjs": "^1.10.7"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^17.0.0",
"@types/semantic-release": "^17.2.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.3",
"prettier": "^2.1.2",
"ts-jest": "^27.1.0",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}