-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "ts-class-initializable",
"version": "1.0.2",
"description": "TypeScript abstract class enabling instance initialization from a plain object",
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/equalogic/ts-class-initializable"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"postversion": "npm run postbuild",
"barrels:generate": "barrelsby --config barrelsby.json",
"release": "np --contents dist/"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"barrelsby": "2.8.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "6.6.0",
"jest": "27.5.1",
"prettier": "3.2.2",
"rimraf": "6.0.1",
"ts-jest": "27.1.5",
"typescript": "5.7.2"
},
"main": "index.js",
"types": "index.d.ts"
}