This repository was archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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
{
"name": "node-jsonapi-serializer",
"version": "2.1.2",
"description": "GOintegro json-api extended serializer/deserializer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"postinstall": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run prettier-format && git add -A src",
"postversion": "git push && git push --tags",
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoIntegro/node-jsonapi-serializer.git"
},
"author": "Nicolas Sefercheoglou",
"license": "ISC",
"bugs": {
"url": "https://github.com/GoIntegro/node-jsonapi-serializer/issues"
},
"homepage": "https://github.com/GoIntegro/node-jsonapi-serializer#readme",
"dependencies": {
"lodash": "^4.17.20"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint && npm test"
}
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}