-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.01 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
{
"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": {
"request": "^2.88.2"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-4.2": "0.1.1",
"@rushstack/eslint-config": "2.4.0",
"@rushstack/heft": "0.38.1",
"@rushstack/heft-node-rig": "1.2.13",
"@types/node": "16.9.6",
"@types/request": "^2.48.7",
"@types/webpack-env": "1.16.2",
"eslint": "7.32.0",
"mocha": "9.1.1",
"node-notifier": "10.0.0",
"should": "^13.2.3",
"typescript": "4.4.3",
"webpack": "^5.48.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}