-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "mockaroo",
"version": "1.0.2",
"description": "Generate data using the mockaroo.com API",
"main": "index.js",
"type": "commonjs",
"author": "Mark Brocato",
"license": "MIT",
"homepage": "https://github.com/mockaroo/mockaroo-node",
"repository": {
"type": "git",
"url": "git://github.com/mockaroo/mockaroo-node.git"
},
"scripts": {
"test": "mocha",
"docs": "esdoc -c esdoc.json",
"build": "esbuild src/* --platform=node --target=node18 --outdir=dist --format=cjs && cp package.json dist/package.json",
"deploy": "edgio deploy --environment=production",
"publish-to-npm": "cd dist && npm publish --access public",
"release": "yarn build && yarn docs && yarn publish-to-npm && yarn deploy"
},
"targets": {
"default": {
"distDir": "dist"
}
},
"dependencies": {
"axios": "1.6.8"
},
"devDependencies": {
"@edgio/cli": "7.11.3",
"@edgio/core": "7.11.3",
"chai": "5.1.0",
"esbuild": "0.20.2",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-n": "15.0.0 || 16.0.0 ",
"eslint-plugin-promise": "6.0.0",
"mocha": "10.4.0",
"nock": "13.5.4"
}
}