-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-adsense",
"version": "0.1.0",
"description": "A Simple React component for Google AdSense and Baidu advertisement.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"clean": "rimraf lib",
"test": "npm run lint",
"build": "npm run clean && cross-env NODE_ENV=production babel src -d lib && npm run build-demos",
"build-demos": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/hustcc/react-adsense.git"
},
"keywords": [
"react",
"component",
"react-component",
"adsense",
"google adsense",
"google adsense",
"baidu",
"advertisement"
],
"author": "hustcc (http://github.com/hustcc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcc/react-adsense/issues"
},
"homepage": "https://github.com/hustcc/react-adsense",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"eslint": "^6.6.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"jsx-loader": "^0.13.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"rimraf": "^2.6.2",
"style-loader": "^0.18.1",
"webpack": "^2.6.1"
},
"dependencies": {},
"peerDependencies": {
"react": ">=0.13.2 || ^0.14 || ^15.0.0 || ^16.0.0",
"prop-types": ">=15.0.0"
}
}