-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "react-popup",
"version": "0.1.1",
"description": "React popup component from Minutemailer",
"main": "index.js",
"scripts": {
"start": "watchify -o dist/bundle.js -v -d ./index.js",
"example": "watchify -o examples/dist/example.js -v -d examples/example.js",
"build": "browserify index.js | uglifyjs -cm > dist/bundle.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/minutemailer/react-popup.git"
},
"keywords": [
"react",
"popup",
"js",
"javascript",
"minutemailer",
"react-component"
],
"author": "Tobias Bleckert (Minutemailer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/minutemailer/react-popup/issues"
},
"homepage": "https://github.com/minutemailer/react-popup",
"dependencies": {
"object-assign": "^1.0.0",
"react": "^0.12.0"
},
"devDependencies": {
"browserify": "^6.2.0",
"reactify": "^0.15.2",
"uglify-js": "^2.4.15",
"watchify": "^2.1.1"
},
"browserify": {
"transform": [
"reactify"
]
}
}