-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "ts-generic-builder",
"version": "1.0.4",
"description": "Type-safe generic builder pattern implementation in Typescript",
"repository": {
"type": "git",
"url": "https://github.com/andreas-hellmann/ts-generic-builder"
},
"main": "dist/builder.js",
"types": "dist/builder.d.ts",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine test/**/*.ts",
"prettier": "prettier --config .prettierrc './**/*.ts' --write",
"build": "rm -rf dist && tsc --build tsconfig.json",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"author": "Andreas Hellmann <andreas.hellmann@posteo.de>",
"license": "MIT",
"keywords": [
"typescript",
"type-safe",
"generic",
"builder pattern",
"DDD",
"Domain Driven Design"
],
"devDependencies": {
"@types/jasmine": "^4.3.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine": "^4.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}