-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "react-json-prettify",
"version": "0.2.0",
"description": "Simple and Lightweight React Component for displaying Json",
"keywords": [
"react",
"json",
"pretty",
"prettify",
"nice",
"beautiful",
"awesome"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --require @babel/register -R spec test/*",
"build": "babel ./src --ignore=*.spec.js --out-dir ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuillaumeCisco/react-json-prettify.git"
},
"author": "Guillaume Cisco <[email protected]> (https://guillaumecisco.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuillaumeCisco/react-json-prettify/issues"
},
"homepage": "https://github.com/GuillaumeCisco/react-json-prettify#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"coffeescript": "^2.4.1",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"istanbul": "^1.0.0-alpha.2",
"jest": "^24.9.0",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"mocha": "^6.2.2",
"react-dom": "^16.12.0",
"sinon": "^7.5.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2"
}
}