-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 911 Bytes
/
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
{
"name": "@linkurious/code-tools",
"version": "0.0.15",
"description": "Various tools for code taks automation, written in Node",
"main": "index.js",
"type": "module",
"bin": {
"sync_versions": "./bin/sync_versions.js",
"copy_npmrc": "./bin/copy_npmrc.js"
},
"engines": {
"node": "18.14.2"
},
"publishConfig": {
"access": "public"
},
"url": "https://github.com/Linkurious/code-tools",
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/code-tools.git"
},
"bugs": {
"url": "https://github.com/Linkurious/code-tools/issues"
},
"homepage": "https://github.com/Linkurious/code-tools#readme",
"scripts": {
"bump:patch": "npm version patch --no-git-tag",
"postversion": "./bin/sync_versions.js"
},
"author": "LK",
"license": "Apache-2.0",
"devDependencies": {
"chalk": "^5.0.0",
"minimist": "^1.2.6"
}
}