-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
{
"name": "material-ui-table-edit",
"version": "3.0.3",
"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",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emkay/material-ui-table-edit.git"
},
"keywords": [
"material",
"ui",
"edit",
"table"
],
"author": {
"name": "Michael Matuzak",
"email": "mmatuzak@gmail.com",
"twitter": "@mmatuzak"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/material-ui-table-edit/issues"
},
"homepage": "https://github.com/emkay/material-ui-table-edit#readme",
"dependencies": {
"babel-core": "^6.26.0",
"create-react-class": "^15.6.2",
"lodash.times": "^4.0.2",
"material-ui": "^0.20.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-tap-event-plugin": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"budo": "^11.1.7",
"react-dom": "^16.2.0",
"standard": "^11.0.0",
"standard-version": "^4.0.0",
"uglify-js": "^3.0.13",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
}
}