-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.62 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
{
"name": "react-jsondata-editor",
"version": "2.0.2",
"description": "A JSON editor library that displays and manipulates JSON objects",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"scripts": {
"build": "rollup -c",
"demo:build": "parcel build demo/index.html",
"demo:start": "parcel demo/index.html",
"test": "jest",
"clean": "rimraf dist && rimraf .parcel-cache && rimraf lib"
},
"keywords": [
"react",
"json",
"editor",
"react json",
"json editor",
"react editor",
"react json editor"
],
"author": {
"name": "Junhyeok Bang",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/putma-jun/react-jsondata-editor.git"
},
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"babel-jest": "^27.2.5",
"jest": "^27.2.5",
"json-pointer": "^0.6.1",
"parcel": "^2.0.0",
"postcss": "^8.3.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.58.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-uglify": "^6.0.4"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/test/cssTransform.js"
}
}
}