-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "typemock",
"version": "0.1.0",
"author": "Dyl Lavoie <[email protected]>",
"description": "Mock data objects shaped with your TypeScript interfaces",
"repository": "https://github.com/dyyyl/typemock",
"license": "MIT",
"main": "./bin/index.js",
"bin": {
"typemock": "./bin/index.js"
},
"files": [
"bin",
"dist"
],
"types": "bin/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest --watch",
"package": "yarn build && yarn pack"
},
"dependencies": {
"commander": "^4.1.0",
"faker": "^4.1.0"
},
"devDependencies": {
"@types/faker": "^4.1.8",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}