-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
50 lines (50 loc) · 973 Bytes
/
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
{
"name": "cordova-plugin-sms-receiver",
"version": "0.1.6",
"description": "Cordova SMS Receiver Plugin",
"scripts": {
"clean": "rimraf www",
"build": "babel src/js --out-dir www",
"version": "sync-package-version --cordova-plugin",
"prepublish": "npm-run-all clean build"
},
"cordova": {
"id": "cordova-plugin-sms-receiver",
"platforms": [
"android"
]
},
"repository": "rehy/cordova-plugin-sms-receiver",
"keywords": [
"cordova",
"sms",
"receiver",
"ecosystem:cordova",
"cordova-android",
"plugin"
],
"author": {
"name": "Ratson"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"sync-package-version": "^0.0.5"
},
"files": [
"*.js",
"*.md",
"*.xml",
"LICENSE",
"src",
"www"
],
"babel": {
"presets": [
"es2015"
]
}
}