forked from Trendyol/nodejs-fixture-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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": "fixture-repository",
"version": "1.4.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "ismail hakki tekin <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Trendyol/nodejs-fixture-repository"
},
"homepage": "https://trendyol.github.io/",
"license": "MIT",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"build": "tsc",
"format": "prettier --write --loglevel=error \"src/**/*\" \"__test__/**/*\"",
"lint": "tslint -c tslint.json --project tsconfig.json \"src/**/*\" \"__test__/**/*\""
},
"dependencies": {
"faker": "^4.1.0",
"fast-glob": "^3.0.4",
"ts-morph": "^7.0.2"
},
"pre-commit": [
"format",
"lint"
],
"devDependencies": {
"@types/faker": "^4.1.5",
"@types/jest": "24.0.11",
"@types/node": "^13.11.1",
"jest": "24.7.1",
"pre-commit": "1.2.2",
"prettier": "1.17.0",
"ts-jest": "24.0.2",
"tslint": "5.16.0",
"tslint-config-airbnb": "5.11.1",
"typescript": "^3.8.3"
}
}