-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "react-json-dom",
"version": "0.0.3",
"description": "A simple component which takes in an object and shows it in json format",
"main": "lib/jsonComponent.js",
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.6.5",
"babel-core": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"gulp": "^3.9.0",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-open": "^1.0.0",
"gulp-sourcemaps": "^1.6.0",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"mocha-jsdom": "^1.0.0",
"react": "^0.14.3",
"react-addons-test-utils": "^0.14.3",
"react-dom": "^0.14.3",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "mocha test/**/*.spec.js --compilers js:babel-core/register --recursive",
"compile": "babel ./components --out-dir ./lib --source-maps --presets es2015,react --plugins babel-plugin-add-module-exports"
},
"license": "MIT",
"keywords": [
"json",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/mike-robertson/react-json-dom.git"
}
}