This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"author": {
"name": "netop://ウエハ",
"url": "https://webb.page"
},
"bin": {
"chronver": "bin/chronver.js"
},
"dependencies": {
"@webb/order-object": "^2020.4.16",
"app-root-path": "^3.0.0"
},
"description": "The chronologic versioner",
"devDependencies": {
"@webb/config-prettier": "^2020.4.16",
"@webb/test": "^2020.4.15",
"del-cli": "^3.0.1",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"updates": "^10.2.13"
},
"files": [
"bin/chronver.js",
"lib/index.js"
],
"homepage": "https://chronver.org",
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test:assert && npm run pretty && npm run increment && git add -A :/"
}
},
"keywords": [
"chronologic",
"chronver",
"date",
"match",
"matching",
"regex",
"regexp",
"version",
"versions"
],
"license": "MIT",
"main": "lib/index.js",
"name": "chronver",
"prettier": "@webb/config-prettier",
"repository": {
"type": "git",
"url": "https://github.com/ChronVer/chronver"
},
"scripts": {
"build": "npm run cleanup && tsc",
"cleanup": "run-s cleanup:*",
"cleanup:bin": "del 'bin/chronver.js' 'bin/chronver.d.ts'",
"cleanup:lib": "del 'lib/index.js' 'lib/index.d.ts'",
"increment": "node bin/chronver.js --increment package",
"pretty": "run-s pretty:*",
"pretty:bin": "prettier --write 'bin/chronver.js' 'bin/chronver.d.ts'",
"pretty:lib": "prettier --write 'lib/index.js' 'lib/index.d.ts'",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
"test:typescript": "tsc",
"test:assert": "ts-node test/index.ts"
},
"types": "lib/index.d.ts",
"version": "2020.06.18.1"
}