-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "object-seeder",
"version": "1.2.2",
"description": "Tiny utils for hassle free automatic object seeding",
"author": "Julien Guillot",
"license": "MIT",
"types": "dist",
"main": "dist/index.js",
"exports": {
"./": "./dist"
},
"repository": {
"type": "git",
"url": "https://github.com/guillotjulien/object-seeder"
},
"keywords": [
"typescript",
"decorator",
"models",
"seed"
],
"scripts": {
"build": "rm -r dist || true && tsc -p tsconfig.build.json",
"prepare": "rm -r dist || true && tsc -p tsconfig.build.json",
"format:all": "prettier --write src/.",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"test": "jest --detectOpenHandles",
"test:watch": "jest --detectOpenHandles --watchAll",
"test:coverage": "jest --coverage --detectOpenHandles",
"test:benchmark": "ts-node test/benchmark.ts"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jsdoc": "^22.1.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"reflect-metadata": "^0.1.13",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write"
]
}
}