This repository was archived by the owner on May 14, 2026. It is now read-only.
forked from muratgozel/node-calver
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.73 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
62
63
64
65
66
67
68
{
"name": "calver",
"version": "v23.7.0",
"description": "The calver parser for node. 📆 🚀",
"main": "./dist/node/lts/cjs/index.js",
"module": "./dist/node/lts/es/index.js",
"type": "module",
"scripts": {
"test": "for i in tests/*.js; do node \"$i\"; done",
"build": "rollup --config rollup.config.js",
"prepare": "npm run build"
},
"exports": {
".": {
"import": "./dist/node/es/index.js",
"require": "./dist/node/cjs/index.js"
},
"./node/lts": {
"import": "./dist/node/lts/es/index.js",
"require": "./dist/node/lts/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/muratgozel/node-calver.git"
},
"keywords": [
"calver",
"calendar",
"versioning",
"semver",
"semantic",
"versioning",
"versioning"
],
"author": {
"name": "Murat Gözel",
"email": "murat@gozel.com.tr",
"url": "https://gozel.com.tr"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/muratgozel"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/muratgozel/node-calver/issues"
},
"homepage": "https://github.com/muratgozel/node-calver#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"core-js": "^3.18.3",
"node-releaser": "^2.0.0-beta.4",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4"
}
}