-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
121 lines (121 loc) · 4 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
{
"name": "react-jsonschema-form-semanticui",
"version": "1.0.3",
"description": "A simple React component capable of building HTML forms out of a JSON schema using React Semantic UI.",
"scripts": {
"build:readme": "toctoc README.md -w",
"build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
"build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
"build:playground": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.config.prod.js --optimize-minimize && cp playground/index.prod.html build/index.html",
"cs-check": "prettier -l $npm_package_prettierOptions '{playground,src,test}/**/*.js'",
"cs-format": "prettier $npm_package_prettierOptions '{playground,src,test}/**/*.js' --write",
"dist": "npm run build:lib && npm run build:dist",
"lint": "eslint src test playground",
"precommit": "lint-staged",
"publish-to-gh-pages": "npm run build:playground && gh-pages --dist build/",
"publish-to-npm": "npm run build:readme && npm run dist && npm publish",
"start": "node devServer.js",
"tdd": "cross-env NODE_ENV=test mocha --compilers js:babel-register --watch --require ./test/setup-jsdom.js test/**/*_test.js",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register --require ./test/setup-jsdom.js test/**/*_test.js"
},
"prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
"lint-staged": {
"{playground,src,test}/**/*.js": [
"npm run lint",
"npm run cs-format",
"git add"
]
},
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"engineStrict": false,
"engines": {
"node": ">=6"
},
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"ajv": "^6.0.0",
"lodash.topath": "^4.5.2",
"prop-types": "^15.5.8",
"react-beautiful-dnd": "^7.1.2",
"react-color": "^2.14.1",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.80.0",
"setimmediate": "^1.0.5",
"uuid": "^3.1.0"
},
"devDependencies": {
"atob": "2.1.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-loader": "6.4.1",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"codemirror": "5.39.2",
"cross-env": "5.2.0",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-react-app": "2.1.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.10.0",
"estraverse": "4.2.0",
"estraverse-fb": "1.3.2",
"express": "4.16.3",
"extract-text-webpack-plugin": "3.0.2",
"gh-pages": "1.2.0",
"html": "1.0.0",
"husky": "0.14.3",
"jsdom": "11.11.0",
"json-loader": "0.5.7",
"lint-staged": "7.2.0",
"mocha": "5.2.0",
"prettier": "1.13.7"
"react": "16.3.2",
"react-addons-test-utils": "15.6.2",
"react-codemirror2": "5.1.0",
"react-dom": "16.3.2",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.6.0",
"rimraf": "2.6.2",
"sinon": "5.1.1",
"style-loader": "0.21.0",
"toctoc": "0.3.0",
"webpack": "1.15.0",
"webpack-dev-middleware": "1.12.2",
"webpack-hot-middleware": "2.22.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nilportugues/react-jsonschema-form-semanticui.git"
},
"author": "Nil Portugués Calderó <[email protected]>",
"keywords": [
"react",
"form",
"json-schema",
"jsonschema",
"semantic-ui",
"semantic",
"css",
"styles"
],
"license": "Apache-2.0",
"homepage": "https://github.com/nilportugues/react-jsonschema-form-semanticui#readme"
}