-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "@nodesecure/npm-registry-sdk",
"version": "3.0.0",
"description": "Node.js SDK to fetch data from the npm API.",
"private": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"coverage": "c8 --reporter=lcov npm run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/npm-registry-sdk.git"
},
"keywords": [],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/npm-registry-sdk/issues"
},
"homepage": "https://github.com/NodeSecure/npm-registry-sdk#readme",
"dependencies": {
"@myunisoft/httpie": "^5.0.1",
"@nodesecure/npm-types": "^1.1.1"
},
"devDependencies": {
"@openally/config.eslint": "^1.1.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.9.0",
"c8": "^10.1.3",
"glob": "^11.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}