forked from emkay/material-ui-table-edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "material-ui-table-edit",
"version": "3.0.0",
"description": "Material UI Edit Table",
"main": "dist.js",
"browser": "dist.js",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"react"
]
}
]
]
},
"directories": {
"example": "example"
},
"scripts": {
"compile": "babel index.jsx --presets es2015,react | uglifyjs -mc > dist.js",
"example": "budo example/demo.jsx",
"test": "standard",
"prepublish": "npm run compile",
"release": "npm run test && standard-version && git push --tags; git push origin master; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emkay/material-ui-table-edit.git"
},
"keywords": [
"material",
"ui",
"edit",
"table"
],
"author": "Michael Matuzak",
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/material-ui-table-edit/issues"
},
"homepage": "https://github.com/emkay/material-ui-table-edit#readme",
"dependencies": {
"lodash.times": "^4.0.2",
"material-ui": "^0.15.0-beta.1",
"react": "^15.0.0",
"react-tap-event-plugin": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"budo": "^8.1.0",
"react-dom": "^15.0.0",
"standard": "^6.0.8",
"standard-version": "^2.1.2",
"uglify-js": "^2.7.0"
}
}