-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.3 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
{
"name": "cordova-mongodb-storage",
"version": "0.1.10",
"description": "This plugin provides a mongodb local storage option to Cordova based applications.",
"cordova": {
"id": "cordova-mongodb-storage",
"platforms": [
"android",
"ios"
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mikakrooswijk/cordova-mongodb-storage.git"
},
"keywords": [
"mongodb",
"plugin",
"stitchSDK",
"Mongodb mobile",
"cordova",
"phonegap",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"scripts": {
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"lint": "eslint typescript/**/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"engines": [
{
"name": "cordova",
"version": ">=3.0.0"
}
],
"author": "Mika Krooswijk",
"bugs": {
"url": "https://github.com/mikakrooswijk/cordova-mongodb-storage/issues"
},
"homepage": "https://github.com/mikakrooswijk/cordova-mongodb-storage",
"dependencies": {
"lodash": "^4.17.15",
"rxjs": "^6.5.2"
},
"files": [
"/www",
"/src",
"README.md",
"package.json",
"plugin.xml",
"build-extras.gradle"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.12",
"@types/lodash": "^4.14.121",
"@types/node": "^10.12.3",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"husky": "^2.2.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"publishConfig": {
"access": "public"
}
}