-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
60 lines (60 loc) · 2.47 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
{
"author": "Vipin Tanna",
"homepage": "https://docs.universal-json-schema.app",
"repository": {
"type": "git",
"url": "git+https://github.com/vip-git/universal-json-schema.git"
},
"bugs": {
"url": "https://github.com/vip-git/universal-json-schema/issues"
},
"scripts": {
"postinstall": "ts-node scripts/installer/index.ts --reactMUI",
"install-react-mui": "ts-node scripts/installer/index.ts --reactMUI",
"install-vue-mui": "ts-node scripts/installer/index.ts --vueMUI",
"install-react-native-paper": "ts-node scripts/installer/index.ts --reactNativePaper",
"install-angular-mui": "ts-node scripts/installer/index.ts --angularMUI",
"install-stencil-ionic": "ts-node scripts/installer/index.ts --stencilIonic",
"install-svelte-mui": "ts-node scripts/installer/index.ts --svelteMUI",
"build": "rollup -c",
"build:demo": "cross-env NODE_ENV=production webpack --config webpack.config.demo.js",
"generate:tests": "node scripts/generator/index.js --testsOnly",
"test": "node --experimental-vm-modules --max-old-space-size=4096 node_modules/.bin/jest --env=jsdom --config=jest.config.js --coverage --updateSnapshot --detectOpenHandles --forceExit",
"lint": "eslint src --fix",
"test:watch": "node scripts/test.js --env=jsdom --config=jest.config.js",
"heroku-postbuild": "npm run build:demo",
"now-build": "npm run build:demo",
"start:ci": "cross-env NODE_ENV=production node demo/web/react/server.js",
"start": "cross-env NODE_ENV=development node demo/web/react/server.js",
"start:demo": "npm run build:demo && npm start",
"start:demo:ci": "npm run build:demo && npm run start:ci",
"deploy:alpha": "npm run build && npm version prerelease --preid=alpha && npm publish",
"deploy": "npm run build && npm version patch && npm publish",
"test:e2e": "npx wdio run wdio.conf.js",
"test:e2e:browserstack:ci": "npx wdio run wdio-ci.conf.js",
"test:e2e:sauce:ci": "npx wdio run wdio-sauce-ci.conf.js",
"posttest": "npm run lint"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"cross-env": "7.0.3",
"ts-node": "10.4.0",
"shelljs": "0.8.5",
"typescript": "4.6.4"
},
"description": "universal-jsonschema-form with UI and XHR Schema.",
"devDependencies": {
"@types/node": "14.18.0"
},
"license": "ISC",
"main": "index.js",
"name": "react-jsonschema-form-material-ui",
"version": "3.0.0-rc.10",
"directories": {
"doc": "docs"
},
"keywords": []
}