-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
82 lines (82 loc) · 2.32 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
{
"name": "cordova-plugin-sqlite-2",
"version": "1.0.7",
"description": "Cordova SQLite Plugin 2",
"scripts": {
"build": "rimraf dist && mkdirp dist && rollup -c",
"build-test": "bash ./bin/build-test.sh",
"lint": "eslint src test/*js bin/*js",
"test": "npm run test-device",
"test-local": "zuul --ui mocha-bdd --local 9000 --no-coverage test/test.js",
"test-phantom": "npm run build && zuul --ui mocha-bdd --phantom --no-coverage test/test.js",
"test-android": "PLATFORM=android npm run test-device",
"test-ios": "PLATFORM=ios npm run test-device",
"test-device": "npm run build && RUN=0 npm run build-test && bash ./bin/run-and-test-appium.sh",
"test-perf": "bash ./bin/test-perf.sh",
"prepublish": "npm run build"
},
"cordova": {
"id": "cordova-plugin-sqlite-2",
"platforms": [
"android",
"ios"
]
},
"repository": "https://github.com/nolanlawson/cordova-plugin-sqlite-2.git",
"keywords": [
"cordova",
"sqlite",
"sqlite3",
"websql",
"database",
"ecosystem:cordova",
"cordova-android",
"cordova-ios"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/cordova-plugin-sqlite-2/issues"
},
"homepage": "https://github.com/nolanlawson/cordova-plugin-sqlite-2#readme",
"devDependencies": {
"appium": "1.10.1",
"bluebird": "3.3.4",
"browserify": "13.0.0",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"colors": "1.1.2",
"cordova": "7.1.0",
"denodeify": "1.2.1",
"eslint": "2.7.0",
"js-extend": "1.0.1",
"lodash.find": "4.2.0",
"mkdirp": "0.5.1",
"phantomjs-prebuilt": "2.1.7",
"pouchdb-ajax": "5.4.4",
"pouchdb-binary-utils": "5.4.4",
"pouchdb-browser": "5.4.4",
"pouchdb-errors": "5.4.4",
"pouchdb-utils": "5.4.4",
"replace": "0.3.0",
"request-promise": "2.0.1",
"rimraf": "2.5.2",
"rollup": "0.59.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"sauce-connect-launcher": "1.2.4",
"stream-to-promise": "1.1.0",
"tape": "4.5.1",
"ua-parser-js": "0.7.10",
"uuid": "2.0.1",
"wd": "1.7.0",
"websql": "0.4.4",
"zuul": "3.11.1"
},
"files": [
"src/android",
"src/ios",
"plugin.xml",
"dist"
]
}