-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.81 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "npm-stats-api",
"version": "2.1.2",
"description": "Node Package's Statistics API | Our functions will provide statistics of node package | This is a Node.js API wrapper for the NPM API and Registry. Based on the original npm-stat-api.",
"files": [
"index.js",
"index.d.ts",
"app.js"
],
"types": "index.d.ts",
"dependencies": {
"babel-polyfill": "^6.26.0",
"superagent": "^10.0.0"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.5.3",
"@types/request": "^2.48.8",
"@types/superagent": "^8.0.0",
"babel": "6.23.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"rollup": "^4.0.0",
"ts-jest": "^29.1.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0"
},
"scripts": {
"dev": "pnpm build --watch",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"format": "prettier --write 'test/*'",
"test": "jest ./test/*",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-push": "pnpm test"
}
},
"ava": {
"require": [
"esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkeeth/npm-stats-api.git"
},
"keywords": [
"api",
"npm",
"api npm",
"npm stats",
"npm api",
"npm stats api",
"npm stat",
"npm package details",
"npm package",
"npm package stats",
"npm package api",
"npm stat details"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kkeeth/npm-stats-api/issues"
},
"homepage": "https://github.com/kkeeth/npm-stats-api#readme",
"volta": {
"node": "20.17.0"
}
}