-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "faker-ts",
"main": "dist/faker-ts.js",
"typings": "dist/faker-ts.d.ts",
"bin": "dist/bin/faker-ts.js",
"scripts": {
"prepublishOnly": "npm run build",
"test": "npm run build && mocha -t 5000 --require source-map-support/register dist/tests",
"debug": "node --inspect-brk -r ts-node/register tests/server.ts",
"run": "ts-node faker-ts.ts",
"serve": "ts-node tests/server.ts",
"build": "tsc -p .",
"lint": "tslint --project tsconfig.json -c tslint.json --exclude '**/*.d.ts'"
},
"dependencies": {
"commander": "^2.20.0",
"faker": "^4.1.0",
"json-schema-faker": "^0.5.0-rc17",
"typescript": "^3.5.2",
"typescript-json-schema": "^0.38.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/faker": "^4.1.5",
"@types/koa": "^2.0.48",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"chai": "^4.2.0",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"mocha": "^6.1.4",
"ts-node": "^8.3.0",
"tslint": "^5.18.0"
},
"version": "0.0.2"
}