This repository has been archived by the owner on May 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
137 lines (137 loc) · 3.8 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "cordova-plugin-admob-free",
"version": "0.27.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:ios": "cordova-testbed --platform ios --plugin .",
"test:js": "jest",
"version": "sync-package-version --cordova-plugin",
"build": "cross-env NODE_ENV=production rollup -c -o www/admob.js",
"clean": "rimraf *.log 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/core": "^7.4.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-member-expression-literals": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-property-literals": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"cordova": "^9.0.0",
"cordova-android": "^8.0.0",
"cordova-testbed": "^0.8.0",
"cross-env": "^5.2.0",
"es6-promise": "^4.2.6",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-concise": "^0.36.0",
"eslint-config-concise-esnext": "^0.36.0",
"eslint-config-concise-jest": "^0.36.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"lintspaces-cli": "^0.7.1",
"lodash": "^4.17.11",
"lodash-es": "^4.17.11",
"nodemon": "^1.19.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-uglify": "^6.0.2",
"sync-package-version": "^0.0.5"
},
"files": [
"*.js",
"*.md",
"*.xml",
"LICENSE",
"src",
"www"
],
"browserslist": [
"> 1%",
"last 4 versions",
"Android > 2",
"last 2 ChromeAndroid versions"
],
"eslintConfig": {
"extends": [
"concise",
"concise-esnext",
"concise-jest"
],
"rules": {
"class-methods-use-this": "off"
}
},
"jest": {
"collectCoverage": true,
"roots": [
"<rootDir>/tests/js"
]
},
"lint-staged": {
"*.{java,js,html,h,m,md,xml}": [
"lintspaces -n -t -d spaces"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}