-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
45
46
47
48
{
"name": "covfefe-react",
"version": "0.0.2",
"description": "",
"main": "dist/covfefe.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "babel src --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajwhite/covfefe-react.git"
},
"keywords": [
"react",
"covfefe"
],
"author": "Atticus White <contact@atticuswhite.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajwhite/covfefe-react/issues"
},
"homepage": "https://github.com/ajwhite/covfefe-react#readme",
"dependencies": {
"covfefe": "^2.1.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}