forked from daniel-lundin/react-dom-confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "react-dom-confetti",
"version": "0.2.0",
"description": "react component for dom-confetti",
"main": "lib/confetti.js",
"keywords": [
"dom-confetti"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/daniel-lundin/react-dom-confetti.git"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"gh-pages": "^0.12.0",
"react": "^15.5.4",
"react-color": "^2.17.0",
"react-dom": "^15.5.4",
"webpack": "^2.3.3"
},
"dependencies": {
"dom-confetti": "0.2.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"postpublish": "npm run gh-pages",
"build": "babel src --out-dir lib",
"build:demo": "webpack --config webpack.demo.config.js",
"gh-pages": "npm run build:demo -- -p && gh-pages -d demo"
}
}