forked from weilandia/deserialize-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 824 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
{
"name": "deserialize-json-api",
"version": "1.4.0",
"description": "Immutable json:api deserializer",
"main": "lib/index.js",
"repository": "https://github.com/weilandia/deserialize-json-api",
"author": "weilandia",
"license": "MIT",
"scripts": {
"build": "webpack",
"dev": "webpack --watch",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.9.6",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"jest": "^26.0.1",
"prettier": "2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.6"
},
"keywords": [
"json:api",
"jsonapi",
"deserialize"
],
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.isarray": "^4.0.0",
"lodash.isplainobject": "^4.0.6"
}
}