-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "react-pretty-json",
"version": "2.0.2",
"description": "JSON to HTML generator with colors and collapsible brackets.",
"main": "index.js",
"scripts": {
"build": "npm run build-ts && npm run dts-bundle && npm run rollup && npm run build-scss",
"build-ts": "tsc -p .",
"build-scss": "node-sass ./src/assets/json-view.scss ./assets/json-view.css --output-style compressed",
"dts-bundle": "dts-bundle --configJson dts-bundle.json",
"rollup": "rollup -c rollup.config.js",
"prepublish": "npm run build"
},
"keywords": [
"json",
"to",
"html",
"generator"
],
"files": [
"assets",
"*.d.ts"
],
"author": "Martynas Zilinskas <martynas@quatrodev.com>, Dovydas Navickas <dovydas@quatrodev.com>",
"license": "GPL-3.0",
"devDependencies": {
"@types/react": "^0.14.30",
"dts-bundle": "^0.5.0",
"node-sass": "^3.8.0",
"rollup": "^0.33.2",
"rollup-plugin-typescript": "0.7.7",
"rollup-plugin-uglify": "^1.0.1",
"typescript": "^2.0.0"
},
"dependencies": {
"react": "^15.3.0"
}
}