-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
{
"name": "@nodesecure/size-satisfies",
"version": "2.0.0",
"description": "Same as SemVer.satisfies but for file size!",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src/index.ts test",
"test-only": "node --test test/test.ts",
"test": "npm run lint && npm run test-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/cli",
"directory": "workspaces/size-satisfies"
},
"files": [
"src"
],
"keywords": [
"size",
"satisfies",
"utility",
"parse",
"parser",
"convert",
"converter"
],
"engines": {
"node": ">=18.0.0"
},
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"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"
},
"devDependencies": {
"@types/bytes": "3.1.5"
}
}