forked from jrop/material-ui-dialogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.01 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
{
"name": "material-ui-dialogs",
"version": "1.0.1",
"description": "Promise-based material-ui alert/confirm/prompt",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -f index.js test/index.js",
"build": "npm run build-lib && npm run build-test",
"build-lib": "babel -o index.js index-source.js",
"build-test": "webpack --entry ./test/index-source.js --output-filename ./test/index.js",
"watch": "babel -w -o index.js index-source.js",
"prepublish": "npm run build-lib"
},
"keywords": [ "material", "ui", "material-ui", "dialog", "dialogs", "promise", "alert", "confirm", "prompt" ],
"author": "Jonathan Apodaca",
"license": "ISC",
"peerDependencies": {
"material-ui": "^0.15.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"webpack": "^1.13.0"
},
"repository": "jrop/material-ui-dialogs"
}