-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "@linkurious/code-tools",
"version": "0.2.1",
"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"
},
"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",
"test": "node --test",
"test:unit": "mkdir -p reports/unit && node --test --test-reporter=spec --test-reporter=junit --test-reporter-destination=stdout --test-reporter-destination=reports/unit/junit-test-results.xml"
},
"author": "LK",
"license": "Apache-2.0",
"dependencies": {
"chalk": "5.4.1"
}
}