-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
43 lines (43 loc) · 1.44 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
{
"name": "electron-rxdb",
"version": "0.8.3",
"description": "RxDB is a high-performance, observable object store built on top of SQLite & intended for database-driven Electron applications.",
"main": "lib/index.js",
"dependencies": {
"better-sqlite3": "git+https://github.com/bengotow/better-sqlite3.git#a888061ad334c76d2db4c06554c90785cc6e7cce",
"lru-cache": "^4.0.1",
"node-gyp": "^3.4.0",
"promise-queue": "^2.2.3",
"promise.prototype.finally": "^2.0.1",
"promise.try": "^1.0.0",
"rx-lite": "^4.0.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "7.1.0",
"babel-preset-electron": "^0.37.8",
"babel-preset-es2016-node5": "^1.1.2",
"babel-preset-react": "^6.16.0",
"electron-prebuilt-compile": "^1.4.4",
"esdoc-es7-plugin": "0.0.3",
"eslint": "3.10.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "6.7.1",
"eslint-plugin-standard": "^2.0.1",
"eslint_d": "4.2.0",
"jasmine": "^2.5.2"
},
"scripts": {
"postinstall": "node ./post-install.js",
"test": "CI=true electron ./spec/runner --enable-logging",
"lint": "./node_modules/.bin/eslint ./src/ ./spec/",
"docs": "esdoc -c esdoc.json",
"compile": "rm -rf lib && babel -d lib/ src",
"prepublish": "npm run compile"
},
"author": "",
"license": "ISC"
}