-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "react-popupbox",
"version": "2.0.9",
"description": "A simple lightbox component for react",
"main": "dist/react-popupbox.js",
"types": "dist/react-popupbox.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Fraina/react-popupbox.git"
},
"keywords": [
"react",
"react component",
"lightbox",
"pop-up"
],
"author": "Faryn Huang <[email protected]> (http://github.com/fraina)",
"license": "MIT",
"bugs": {
"url": "http://github.com/fraina/react-popupbox/issues"
},
"homepage": "http://github.com/fraina/react-popupbox#readme",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"dist": "npm run build; cp ./src/css/react-popupbox.css ./dist/react-popupbox.css"
},
"dependencies": {
"deepmerge": "^1.3.2",
"react": "^16.3.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"webpack": "^2.3.1"
}
}