-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 993 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
37
38
39
40
{
"name": "bare-semver",
"version": "1.0.1",
"description": "Minimal semantic versioning library for Bare",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package": "./package.json",
"./constants": "./lib/constants.js",
"./errors": "./lib/errors.js",
"./version": "./lib/version.js",
"./range": "./lib/range.js",
"./comparator": "./lib/comparator.js"
},
"files": [
"index.js",
"index.d.ts",
"lib"
],
"scripts": {
"test": "prettier . --check && bare test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-semver.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-semver/issues"
},
"homepage": "https://github.com/holepunchto/bare-semver#readme",
"devDependencies": {
"brittle": "^3.2.1",
"prettier": "^3.4.2",
"prettier-config-standard": "^7.0.0"
}
}