-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "nosqlprovider",
"version": "0.6.23",
"description": "A cross-browser/platform indexeddb-like client library",
"author": "David de Regt <[email protected]>",
"scripts": {
"ci-test": "npm run build && npm run test",
"test": "mocha dist/tests/NoSqlProviderTests.js --timeout 5000",
"webtest": "webpack --watch",
"build": "npm run tslint && tsc",
"tslint": "tslint --project tsconfig.json -r tslint.json -r ./node_modules/tslint-microsoft-contrib --fix || true"
},
"main": "dist/NoSqlProvider.js",
"sideEffects": false,
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/sqlite3": "^3.1.6",
"core-js": "^3.6.5",
"lodash": "^4.17.15",
"regexp-i18n": "^1.3.2"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/node": "13.1.7",
"@types/sinon": "^7.5.1",
"awesome-typescript-loader": "^5.2.1",
"mocha": "^7.0.0",
"sinon": "^8.1.0",
"sqlite3": "^4.1.1",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/NoSQLProvider"
},
"bugs": {
"url": "https://github.com/Microsoft/NoSQLProvider/issues"
},
"typings": "dist/NoSqlProvider.d.ts",
"typescript": {
"definition": "dist/NoSqlProvider.d.ts"
},
"keywords": [
"nosql",
"indexeddb",
"websql",
"sqlite",
"browser",
"react native"
],
"license": "MIT"
}