forked from ratson/cordova-plugin-admob-free
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.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
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
100
101
102
103
104
105
106
107
108
109
110
{
"name": "cordova-plugin-admob-free",
"version": "0.13.0",
"description": "Cordova AdMob Plugin for Google AdMob",
"scripts": {
"prepublish": "run-s clean build",
"postpublish": "run-s docs",
"pretest": "cross-env BABEL_ENV=test run-s build",
"test": "run-p test:* lint:*",
"test:cordova": "cordova-test",
"test:js": "jest",
"version": "sync-package-version --cordova-plugin",
"build": "cross-env NODE_ENV=production rollup -c -o www/admob.js",
"clean": "rimraf coverage dist www",
"docs": "run-s docs:*",
"docs:esdoc": "esdoc -c esdoc.json",
"docs:commit": "cd gh-pages && git add -A . && git commit -a -m 'Update page'",
"docs-watch": "nodemon -w src --exec 'npm run docs'",
"lint": "run-p lint:*",
"lint:js": "eslint --ext js,md .",
"lint:spaces": "lintspaces -n -t -d spaces *.* src/**/*.* tests/**/*.* examples/*/*.* examples/*/www/*.*"
},
"cordova": {
"id": "cordova-plugin-admob-free",
"platforms": [
"android",
"ios"
]
},
"homepage": "https://ratson.github.io/cordova-plugin-admob-free/",
"repository": "ratson/cordova-plugin-admob-free",
"keywords": [
"cordova",
"admob",
"ecosystem:cordova",
"cordova-plugin-admob",
"cordova-admob",
"cordova-android",
"cordova-ios",
"plugin",
"google",
"admobpro"
],
"tonicExampleFilename": "test.js",
"author": "Ratson",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cordova": "^7.1.0",
"cordova-android": "^7.0.0",
"cordova-test-cli": "^0.0.1",
"cross-env": "^5.1.1",
"delay": "^2.0.0",
"es6-promise": "^4.1.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.13.0",
"eslint-config-concise": "^0.16.0",
"eslint-config-concise-esnext": "^0.16.0",
"eslint-config-concise-jest": "^0.16.0",
"jest": "^21.2.1",
"lintspaces-cli": "^0.6.0",
"lodash": "^4.17.4",
"lodash-es": "^4.17.4",
"nodemon": "^1.12.5",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"sync-package-version": "^0.0.5"
},
"files": [
"*.js",
"*.md",
"*.xml",
"LICENSE",
"src",
"www"
],
"browserslist": [
"> 1%",
"last 4 versions",
"Android > 2",
"last 2 ChromeAndroid versions"
],
"jest": {
"collectCoverage": true,
"roots": [
"<rootDir>/tests/js"
]
}
}