-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
41 lines (41 loc) · 921 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
41
{
"name": "@nodesecure/size-satisfies",
"version": "1.1.0",
"description": "Same as SemVer.satisfies but for file size!",
"type": "module",
"exports": "./index.js",
"scripts": {
"lint": "eslint index.js",
"test-only": "node --test test/",
"test": "npm run lint && npm run test-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/cli.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"size",
"satisfies",
"utility",
"parse",
"parser",
"convert",
"converter"
],
"engines": {
"node": ">=18.0.0"
},
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/cli/issues"
},
"homepage": "https://github.com/NodeSecure/cli/master/workspaces/size-satisfies#readme",
"dependencies": {
"bytes": "^3.1.2"
}
}