-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "jsonapi-fractal",
"version": "1.0.17",
"description": "JSON:API Serializer inspired by Fractal (PHP)",
"license": "MIT",
"main": "dist/index",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "tslint src/**/*.ts tests/*.ts"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.2.7",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.8.3"
},
"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"
}
}