-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
121 lines (121 loc) · 3.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
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-aztec",
"description": "Material UI based dynamic form component for React using JSON-Schema",
"author": "Ajain Vivek",
"user": "ajainvivek",
"version": "0.1.36",
"scripts": {
"start": "webpack-dev-server --port 8000",
"test": "jest --",
"test:coverage": "jest --coverage --",
"test:watch": "jest --watch --",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
"gh-pages": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --profile --json > stats.json",
"dist": "webpack",
"dist:min": "webpack",
"dist:modules": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist:modules",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"module": "src",
"jsnext:main": "src",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-react-remove-prop-types": "^0.2.10",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"catalog": "^2.4.7",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.13",
"css-loader": "^0.25.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.6.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"git-prepush-hook": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"html-webpack-template": "^5.4.1",
"jest": "^16.0.1",
"json-loader": "^0.5.4",
"material-ui": "^0.16.7",
"npm": "^4.0.2",
"purecss": "^0.6.0",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-github-corner": "^0.3.0",
"react-highlight": "^0.9.0",
"react-json-tree": "^0.10.0",
"react-split-pane": "^0.1.57",
"react-tap-event-plugin": "^2.0.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^0.15.0"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ajainvivek/react-aztec.git"
},
"homepage": "https://ajainvivek.github.io/react-aztec",
"bugs": {
"url": "https://github.com/ajainvivek/react-aztec/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"dynamic-forms",
"dynamic forms",
"playground",
"forms",
"build interactive form",
"robo-form",
"material-ui"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"numeral": "^2.0.4",
"pui-react-grids": "^7.2.0",
"validator": "^6.1.0"
}
}