-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.16 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.16 KB
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
57
58
59
60
61
{
"name": "build-this-branch",
"version": "0.0.0-semantic-release",
"description": "Script to automate creating built branches",
"keywords": [
"npm",
"git",
"github",
"built",
"build",
"branch",
"branches"
],
"license": "MIT",
"repository": "privatenumber/build-this-branch",
"funding": "https://github.com/privatenumber/build-this-branch?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"bin",
"dist"
],
"bin": "dist/index.js",
"scripts": {
"build": "pkgroll --minify --target=node12.19",
"lint": "eslint .",
"postversion": "npm run build"
},
"dependencies": {
"yoga-layout-prebuilt": "^1.10.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.26.2",
"@types/node": "^18.0.4",
"@types/npm-packlist": "^3.0.0",
"cleye": "^1.2.1",
"eslint": "^8.19.0",
"execa": "^6.1.0",
"npm-packlist": "^5.1.1",
"pkg-up": "^4.0.0",
"pkgroll": "^1.3.1",
"tasuku": "^2.0.0",
"typescript": "^4.7.4"
},
"eslintConfig": {
"extends": "@pvtnbr",
"rules": {
"@typescript-eslint/no-shadow": [
"error",
{
"allow": [
"task",
"setTitle"
]
}
]
}
}
}