-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
99 lines (99 loc) · 3.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-google-publisher-tag",
"version": "2.0.6",
"description": "Adsense via Google publisher tag for the isomorphic applications",
"author": {
"name": "Zlatko Fedor",
"email": "[email protected]",
"url": "http://www.cherrysro.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/seeden/react-google-publisher-tag.git"
},
"keywords": [
"react",
"react-component",
"adsense",
"ad",
"publisher",
"gpt",
"tag",
"google"
],
"private": false,
"license": "MIT",
"main": "./dist/index.js",
"browser": "./lib/index.js",
"module": "./module/index.js",
"esnext": "./src/index.js",
"sideEffects": "false",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"prepublish": "npm run build",
"test": "jest ./src/",
"test:coverage": "jest --coverage ./src/",
"test:watch": "jest --watch ./src/",
"build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files",
"build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files",
"build-node": "babel ./src --out-dir ./dist --source-maps --copy-files",
"build": "npm run build-node && npm run build-browser && npm run build-module",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ./src"
},
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
]
},
"dependencies": {
"@babel/runtime": "^7.4.2",
"keymirror": "^0.1.1",
"lodash": "^4.17.11",
"react-measure": "^2.2.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
"@babel/plugin-transform-proto-to-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.5.0",
"jest-cli": "^24.5.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"peerDependencies": {
"react": "16.x"
}
}