-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "material-ui-dialogs",
"version": "1.3.0",
"description": "Promise-based material-ui alert/confirm/prompt",
"main": "lib/index.js",
"scripts": {
"_prettier": "prettier --use-tabs --no-semi --single-quote --trailing-comma es5 --no-bracket-spacing --jsx-bracket-same-line 'src/**/*.js'",
"lint": "npm run _prettier -- -l",
"lint:fix": "npm run _prettier -- --write",
"clean": "rm -f index.js test/index.js",
"build": "babel -d lib/ src/ && NODE_ENV=production webpack",
"precommit": "npm run lint",
"prepack": "npm run build"
},
"keywords": [
"material",
"ui",
"material-ui",
"dialog",
"dialogs",
"promise",
"alert",
"confirm",
"prompt"
],
"author": "Jonathan Apodaca",
"license": "ISC",
"peerDependencies": {
"material-ui": "^0.19.1",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"arrify": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"husky": "^0.14.3",
"material-ui": "^0.16.6",
"preact": "^8.2.5",
"preact-compat": "^3.17.0",
"prettier": "^1.6.1",
"webpack": "^3.5.6",
"webpack-configify": "0.0.5"
},
"repository": "jrop/material-ui-dialogs",
"files": [
"dist/**/*",
"lib/**/*"
]
}