-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.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
{
"name": "json2obj-hoc",
"version": "1.2.1",
"description": "Higher-Order Component that adds ability for object to be re-constructed from JSON string properly preserving given Class type",
"main": "lib/json2obj-hoc.js",
"scripts": {
"prepublish": "rm -rf ./lib && babel src --out-dir lib",
"test": "rm -rf ./lib && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echowaves/json2obj-hoc.git"
},
"keywords": [
"serializable",
"Json2Object",
"HOC",
"stringify",
"parse"
],
"author": "Dmitry Amelchenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/echowaves/json2obj-hoc/issues"
},
"homepage": "https://github.com/echowaves/json2obj-hoc#readme",
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.10.4",
"babel-eslint": "10.1.0",
"eslint": "7.5.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"jest": "26.1.0"
}
}