-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "semverflation",
"version": "1.0.7",
"description": "Calculate frequency of semver major bumps over time",
"exports": "./index.js",
"type": "module",
"bin": "./cli/cli.js",
"scripts": {
"test:types": "tsd",
"test:unit": "ava",
"test:pkg": "npx @skypack/package-check",
"test": "npm run test:unit && npm run test:types && npm run test:pkg"
},
"types": "./index.d.ts",
"keywords": [
"semver",
"cli",
"browser"
],
"files": [
"index.js",
"index.d.ts",
"lib/**/*.js",
"cli/**/*.js"
],
"engines": {
"node": ">=14.16"
},
"repository": {
"type": "git",
"url": "https://github.com/detj/semverflation.git"
},
"author": "Debjeet Biswas <[email protected]>",
"license": "MIT",
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"ava": "^4.2.0",
"eslint": "^8.15.0",
"tsd": "^0.20.0"
},
"dependencies": {
"luxon": "^2.4.0",
"meow": "^10.1.2",
"node-fetch": "^3.2.4",
"semver": "^7.3.7"
},
"volta": {
"node": "16.15.0"
}
}