forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·160 lines (160 loc) · 5.64 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "rxdb",
"description": "Offline-first database with Reactive, Sync, Schema, Promises, Mongo-Query, Encryption, LevelDown",
"version": "4.0.2",
"author": "pubkey",
"repository": {
"type": "git",
"url": "https://github.com/pubkey/rxdb"
},
"keywords": [
"db",
"database",
"offline-first",
"schema",
"replication",
"leveldown",
"reactive",
"localstorage",
"indexeddb",
"rxjs",
"encryption",
"nosql",
"pouchdb"
],
"license": "Apache-2.0",
"main": "./dist/lib/index.js",
"jsnext:main": "./dist/es/index.js",
"module": "./dist/es/index.js",
"types": "./src/index.d.ts",
"scripts": {
"pretest": "npm run transpile",
"test": "gulp --gulpfile ./config/gulpfile.js test && karma start ./config/karma.conf.js",
"test:node": "npm run pretest && gulp --gulpfile ./config/gulpfile.js test",
"test:browser": "npm run pretest && karma start ./config/karma.conf.js",
"dockertest": "docker run -it -v $(pwd):/usr/src/app markadams/chromium-xvfb-js:latest-onbuild",
"clear": "rimraf -rf test_tmp/ && rimraf -rf dist/ && rimraf .transpile_state.json",
"lint": "eslint --ignore-path ./config/.eslintignore src test ./config/gulpfile.js",
"transpile:clean": "rimraf dist/lib",
"transpile": "node scripts/transpile.js",
"build:es": "rimraf -rf dist/es && cross-env NODE_ENV=es6 babel src --out-dir dist/es",
"build:rollup": "rollup -c --environment UGLIFY:true --config ./config/rollup.config.js && rollup -c --environment UGLIFY:false --config ./config/rollup.config.js",
"build:webpack": "webpack --optimize-minimize --config ./config/webpack.config.js",
"build": "npm run clear && npm run transpile && npm run build:es && browserify dist/lib/browserify.index.js > dist/rxdb.browserify.js && uglifyjs --compress --mangle --output dist/rxdb.browserify.min.js -- dist/rxdb.browserify.js",
"disc": "npm run transpile && browserify dist/lib/index.js --full-paths | uglifyjs --compress --mangle | discify --open --full-paths",
"preversion": "npm run lint && npm run test",
"dev": "watch 'npm run test:node' src/ test/",
"dev:example": "watch 'npm run transpile:src && echo \"done\"' src/ test/"
},
"pre-commit": [
"lint"
],
"peerDependencies": {
"babel-polyfill": "^6.23.0",
"rxjs": "^5.2.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"@types/core-js": "^0.9.41",
"clone": "^2.1.1",
"crypto-js": "3.1.8",
"deep-equal": "^1.0.1",
"es6-promise": "^4.0.5",
"is-my-json-valid": "^2.16.0",
"object-path": "0.11.4",
"pouchdb-core": "6.2.0",
"pouchdb-find": "6.2.0",
"random-token": "0.0.8",
"spark-md5": "3.0.0",
"unload": "^1.3.5",
"url": "0.11.0"
},
"devDependencies": {
"assert": "1.4.1",
"babel-preset-es2015-native-modules": "6.9.4",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-constants": "^6.1.4",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2015-rollup": "3.0.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babelrc-rollup": "3.0.0",
"brfs": "1.4.3",
"browserify": "^14.1.0",
"concurrently": "^3.4.0",
"cross-env": "^5.0.0",
"delete": "^1.0.1",
"disc": "1.3.2",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"exists-file": "^3.0.0",
"express": "^4.15.3",
"express-pouchdb": "^2.3.7",
"faker": "^4.1.0",
"gulp": "3.9.1",
"gulp-mocha": "^4.3.0",
"http-server": "^0.10.0",
"karma": "^1.4.1",
"karma-babel-preprocessor": "6.0.1",
"karma-browserify": "5.1.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "1.1.1",
"karma-detect-browsers": "^2.2.5",
"karma-edge-launcher": "^0.4.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-opera-launcher": "1.0.0",
"karma-safari-launcher": "1.0.0",
"leveldown": "^1.7.0",
"lodash": "4.17.4",
"memdown": "1.2.4",
"mocha": "^3.4.1",
"nconf": "^0.8.4",
"platform": "1.3.3",
"pouchdb": "^6.2.0",
"pouchdb-adapter-http": "^6.2.0",
"pouchdb-adapter-idb": "^6.2.0",
"pouchdb-adapter-indexeddb": "0.0.0",
"pouchdb-adapter-leveldb": "^6.2.0",
"pouchdb-adapter-localstorage": "^6.2.0",
"pouchdb-adapter-memory": "^6.2.0",
"pouchdb-adapter-websql": "^6.2.0",
"pouchdb-replication": "^6.2.0",
"pre-commit": "1.2.2",
"random-int": "1.0.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"request-promise-native": "^1.0.4",
"rimraf": "^2.6.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sizes": "^0.3.0",
"rollup-plugin-uglify": "^1.0.2",
"rxjs": "^5.4.0",
"shelljs": "^0.7.7",
"typescript": "^2.2.2",
"uglify-js": "^3.0.7",
"walk-sync": "^0.3.1",
"watch": "^1.0.2",
"watchify": "3.9.0",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.4"
}
}