This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
128 lines (128 loc) · 3.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-json-editor-ajrm",
"version": "2.5.14",
"description": "A stylish, editor-like, modular, react component for viewing, editing, and debugging javascript object syntax!",
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/AndrewRedican/react-json-editor-ajrm#readme",
"bugs": {
"url": "https://github.com/AndrewRedican/react-json-editor-ajrm/issues"
},
"main": "index.js",
"files": [
"*"
],
"sideEffects": false,
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"test": "npm run test:start && npm run test:clear",
"test:start": "cross-env NODE_ENV=test BABEL_ENV=modules:commonjs jest --updateSnapshot",
"test:clear": "del-cli test/__snapshots__",
"test:watch": "cross-env NODE_ENV=test BABEL_ENV=modules:commonjs jest --watch",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=modules:commonjs jest --coverage",
"test:release": "npm run build && npm pack ./dist",
"build": "npm run build:commonjs && npm run build:es && npm run build:copy-files && npm run test",
"build:commonjs": "cross-env NODE_ENV=production BABEL_ENV=modules:commonjs babel ./src --out-dir ./dist/ --ignore *.test.js",
"build:es": "cross-env NODE_ENV=production BABEL_ENV=modules:es babel ./src --out-dir ./dist/es --ignore *.test.js",
"build:copy-files": "node ./scripts/copy-files.js",
"release": "npm run build && npm publish ./dist"
},
"jest": {
"verbose": true,
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"transform": {
"^.+\\.js$": "<rootDir>/test/jest.transform.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"testURL": "http://localhost",
"setupFiles": [
"./test/jest.setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"repository": "[email protected]:AndrewRedican/react-json-editor-ajrm.git",
"keywords": [
"react-json-editor-ajrm",
"ajrm",
"react json editor",
"json",
"input box",
"editor",
"react-json",
"json editor",
"json debug",
"json schema",
"json parser",
"json viewer",
"json validator",
"mitsuketajs.org",
"mitsuketa",
"javascript object viewer",
"javascript object notation",
"json validator",
"javascript object syntax validator",
"react",
"component",
"syntax editor",
"nosql",
"wysiwyg",
"WYSIWYG",
"what you see is what you get",
"schema editor",
"english",
"german",
"spanish",
"hindi",
"indonesian",
"portuguese",
"chinese",
"french",
"russian",
"japanese",
"tamil"
],
"peerDependencies": {
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.0",
"@babel/core": "^7.0.0-beta.55",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-rc.0",
"@babel/plugin-transform-object-assign": "^7.0.0-rc.0",
"@babel/plugin-transform-runtime": "^7.0.0-rc.0",
"@babel/preset-env": "^7.0.0-rc.0",
"@babel/preset-react": "^7.0.0-rc.0",
"all-contributors-cli": "^6.17.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-extensible-destructuring": "^4.2.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"fs-extra": "^7.0.0",
"jest": "^26.4.2",
"mitsuketa": "^1.4.3",
"react": ">=16.2.0",
"react-dom": ">=16.2.0",
"react-test-renderer": "^16.4.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0-rc.0"
}
}