-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "@spiderdan98/json-api-normalizer",
"version": "1.0.6",
"description": "JSON API response normalizer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"test": "jest"
},
"keywords": [
"JSON",
"API",
"normalize"
],
"author": "SpiderDan98",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"@types/json-pointer": "^1.0.31",
"babel-jest": "^27.4.5",
"cross-env": "^7.0.3",
"jest": "^27.4.5",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4"
},
"dependencies": {
"json-pointer": "^0.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpiderDan98/json-api-normalizer.git"
},
"bugs": {
"url": "https://github.com/SpiderDan98/json-api-normalizer/issues"
},
"homepage": "https://github.com/SpiderDan98/json-api-normalizer#readme"
}