-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.28 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
{
"name": "dummy-faker",
"version": "0.7.3",
"description": "An extension over Faker.js to create loads of fake json objects with customized properties",
"main": "index.js",
"scripts": {
"refresh": "npm run clean-all && yarn install && npm run build",
"start": "npm run build && node .",
"prePublish": "npm run build && gulp preBuild",
"build": "npm run clean && tsc",
"ts": "node -r ts-node/register",
"local": "cross-env TS_NODE_COMPILER_OPTIONS='{\"allowJs\": false,\"checkJs\": false}' nodemon examples/example.ts",
"local-3rd": "cross-env TS_NODE_COMPILER_OPTIONS='{\"allowJs\": false,\"checkJs\": false}' nodemon examples/example-3rd-party.ts",
"local-stream": "cross-env TS_NODE_COMPILER_OPTIONS='{\"allowJs\": false,\"checkJs\": false}' nodemon examples/example-stream.ts",
"local-js": "nodemon examples/example.js",
"local-js-3rd": "nodemon examples/example-3rd-party.js",
"local-js-stream": "nodemon examples/example-stream.js",
"clean": "rm -rf lib dist yarn-error.log tsconfig.tsbuildinfo",
"clean-all": "rm -rf node_modules lib dist yarn.lock yarn-error.log tsconfig.tsbuildinfo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Terran-Source/node-dummy-faker.git"
},
"keywords": [
"nodejs",
"faker",
"dummy-faker",
"stream",
"AbortController"
],
"contributors": [
{
"name": "Tamal Patra",
"email": "patra.tamal@gmail.com",
"url": "https://sourcerer.io/turn-a-round",
"contributions": 100,
"hireable": true
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Terran-Source/node-dummy-faker/issues"
},
"homepage": "https://github.com/Terran-Source/node-dummy-faker#readme",
"devDependencies": {
"@types/node": "^17.0.16",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"custom-exception": "^0.1.2",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-terser": "^2.1.0",
"mocha": "^9.2.0",
"node-abort-controller": "^3.0.1",
"nodemon": "^2.0.15",
"readable-stream": "^3.6.0",
"suchjs": "^2.1.5",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@faker-js/faker": "^6.0.0-alpha.5"
}
}