-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "randomuser",
"description": "A Simple Node.js Library for the https://randomuser.me REST API",
"homepage": "https://github.com/cascadiacollections/randomuser",
"keywords": [
"random",
"user",
"fake",
"data",
"placeholder"
],
"version": "1.2.2",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "heft build --clean",
"build:ci": "heft build --clean --production",
"test": "mocha"
},
"dependencies": {
"node-fetch": "2.7.0"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-5.3": "0.1.0",
"@rushstack/eslint-config": "4.1.1",
"@rushstack/heft": "0.66.3",
"@rushstack/heft-node-rig": "2.6.0",
"@types/node": "^22.0.1",
"@types/node-fetch": "^2.6.11",
"@types/request": "^2.48.12",
"@types/webpack-env": "1.18.5",
"eslint": "8.57.1",
"mocha": "11.0.1",
"node-notifier": "10.0.1",
"should": "^13.2.3",
"typescript": "5.7.3",
"webpack": "^5.48.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}