-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.37 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": "@shoooe/derive",
"version": "0.0.0-semantic-release",
"description": "Library to derive a type from another.",
"keywords": [
"safe",
"derive",
"pick",
"deep",
"types",
"typesafe",
"typescript",
"graphql"
],
"types": "out/index.d.ts",
"main": "out/index.js",
"author": "Shoe <[email protected]>",
"repository": "github:shoooe/derive",
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.4"
},
"scripts": {
"build:clean": "tsc --build --clean",
"build:compile": "tsc",
"build": "yarn build:clean && yarn build:compile",
"test": "yarn tsc --noEmit -p ./tsconfig.test.json",
"lint": "eslint .",
"prepare": "yarn build",
"prepublishOnly": "yarn lint"
},
"files": [
"out"
],
"private": false,
"release": {
"branches": [
"main",
{ "name": "beta", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
}
}