-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "react-snowstorm",
"version": "0.0.3",
"description": "A Snow Effect component for React.",
"main": "lib/index.js",
"scripts": {
"start-dev": "babel ./src --watch --out-dir ./lib & npm link && cd demo && npm install && npm link react-snowstorm && npm run start-dev",
"prebuild": "rm -rf lib/*",
"build": "babel ./src --out-dir ./lib",
"prepublish": "npm run build"
},
"keywords": [
"snow",
"christmas",
"storm",
"react",
"dhtml"
],
"author": "Burak Can <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "http://github.com/burakcan/react-snowstorm"
},
"bugs": {
"url": "http://github.com/burakcan/react-snowstorm/issues"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0"
}
}