-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 KB
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
{
"name": "nativescript-couchdb",
"version": "0.6.23",
"description": "Couchdb plugin for nativescript",
"main": "index.js",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
}
},
"scripts": {
"tsc": "tsc -skipLibCheck",
"build": "npm i && tsc",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"plugin.tscwatch": "npm run tsc -- -w",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS"
],
"author": {
"name": "Jeffry L",
"email": "paragasu@gmail.com"
},
"bugs": {
"url": "https://github.com/paragasu/nativescript-couchdb/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/paragasu/nativescript-couchdb",
"readmeFilename": "README.md",
"devDependencies": {
"prompt": "^1.0.0",
"rimraf": "^3.0.0",
"tns-core-modules": "^6.3.2",
"tns-platform-declarations": "^6.3.2",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"tns-core-modules-declarations": "^2.5.0"
},
"bootstrapper": "nativescript-plugin-seed"
}