-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jsonapi-fractal",
"version": "2.3.1",
"description": "JSON:API Serializer inspired by Fractal (PHP)",
"license": "MIT",
"main": "dist/index",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc",
"lint": "eslint '{src,examples,tests}/**/*.{ts,js}'",
"typedoc": "typedoc --readme none --excludeInternal --excludePrivate src/index.ts",
"update-examples": "embedme README.md",
"prepare-release": "npm run typedoc && npm run update-examples",
"prepare": "husky install"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andersondanilo/jsonapi-fractal.git"
},
"keywords": [
"json api",
"serializer"
],
"author": "Anderson Danilo",
"homepage": "https://github.com/andersondanilo/jsonapi-fractal#readme",
"bugs": {
"url": "https://github.com/andersondanilo/jsonapi-fractal/issues"
},
"dependencies": {
"change-case": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.1",
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"acorn": "^8.7.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"embedme": "^1.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1",
"semantic-release": "^20.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"type-fest": "^3.5.1",
"typedoc": "^0.23.15",
"typedoc-plugin-markdown": "^3.11.14",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}