-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.29 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
{
"name": "@feathersjs-offline/localforage",
"version": "1.1.5",
"description": "A FeathersJS client side service based on localforage that persists to IndexedDB, WebSQL, or LocalStorage",
"keywords": [
"feathers",
"feathers-plugin",
"feathersjs-offline",
"offline-first",
"mobile"
],
"author": {
"name": "Feathersjs-offline contributors",
"email": "[email protected]",
"url": "https://github.com/feathersjs-offline"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-offline/localforage/issues"
},
"homepage": "https://github.com/feathersjs-offline/localforage",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib",
"dist"
],
"publishConfig": {
"access": "public"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/feathers"
},
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-offline/localforage.git"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"unit": "npm run mocha",
"test": "npm run compile && npm run mocha",
"mocha": "nyc mocha --config ./.mocharc.ts.json --exit test/*.test.js",
"webpack": "parallel-webpack -- --env.home=`pwd`"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/commons": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"debug": "^4.3.2",
"localforage": "^1.10.0",
"sift": "^16.0.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio": "^4.5.11",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/mocha": "^9.0.0",
"@types/node": "^18.7.12",
"chai": "^4.3.4",
"core-js": "^3.19.1",
"cross-env": "^7.0.3",
"eslint-config-standard": "^13.0.1",
"mocha": "^10.0.0",
"npm-check-updates": "^16.0.5",
"nyc": "^15.1.0",
"parallel-webpack": "^2.6.0",
"shx": "^0.3.3",
"ts-node": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"webpack": "^5.10.0",
"webpack-merge": "^5.5.0"
}
}