-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jsonapi-ts-deserializer",
"version": "2.4.2",
"description": "JSON:API deserializer in Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"coverage": "jest --config jestconfig.json --coverage --coverageReporters=\"json-summary\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Strobotti/jsonapi-ts-deserializer.git"
},
"keywords": [
"jsonapi",
"typescript",
"deserializer",
"JSON:API"
],
"author": "Juha Jantunen <juha@strobotti.com> (https://www.strobotti.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Strobotti/jsonapi-ts-deserializer/issues"
},
"homepage": "https://github.com/Strobotti/jsonapi-ts-deserializer#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^44.2.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"semantic-release": "^21.0.0",
"ts-jest": "^29.0.5",
"typescript": "^5.0.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}