forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·144 lines (144 loc) · 5.21 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
{
"name": "rxdb",
"description": "Offline-first database with Reactive, Sync, Schema, Promises, Mongo-Query, Encryption, LevelDown",
"version": "3.0.5",
"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": "./src/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 && npm run posttest",
"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",
"posttest": "rimraf -rf test_tmp/",
"lint": "eslint --ignore-path ./config/.eslintignore src test ./config/gulpfile.js",
"transpile:src": "rimraf -rf dist/lib/ && node node_modules/babel-cli/bin/babel.js src --out-dir dist/lib",
"transpile:test:helper": "rimraf -rf test_tmp/helper && node node_modules/babel-cli/bin/babel.js test/helper --out-dir test_tmp/helper/",
"transpile:test:node": "rimraf -rf test_tmp/unit && node node_modules/babel-cli/bin/babel.js test/unit --out-dir test_tmp/unit/",
"transpile": "concurrently \"npm run transpile:test:helper\" \"npm run transpile:src\" \"npm run transpile:test:node\"",
"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 transpile && 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": {
"@types/core-js": "^0.9.35",
"babel-preset-es2015-native-modules": "6.9.4",
"babel-runtime": "^6.23.0",
"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.1.2",
"pouchdb-find": "^0.10.5",
"random-token": "0.0.8",
"spark-md5": "3.0.0",
"unload": "^1.3.5",
"url": "0.11.0"
},
"devDependencies": {
"assert": "1.4.1",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"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-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2015-rollup": "3.0.0",
"babelrc-rollup": "3.0.0",
"brfs": "1.4.3",
"browserify": "^14.1.0",
"concurrently": "^3.4.0",
"disc": "1.3.2",
"eslint": "^3.18.0",
"eslint-plugin-babel": "^4.1.1",
"express": "^4.15.2",
"express-pouchdb": "^2.3.5",
"faker": "^4.1.0",
"gulp": "3.9.1",
"gulp-mocha": "^4.0.1",
"http-server": "0.9.0",
"karma": "^1.4.1",
"karma-babel-preprocessor": "6.0.1",
"karma-browserify": "5.1.1",
"karma-chrome-launcher": "2.0.0",
"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",
"lodash": "4.17.4",
"memdown": "1.2.4",
"mocha": "3.2.0",
"platform": "1.3.3",
"pouchdb": "^6.1.2",
"pouchdb-adapter-http": "^6.1.2",
"pouchdb-adapter-idb": "^6.1.2",
"pouchdb-adapter-indexeddb": "0.0.0",
"pouchdb-adapter-leveldb": "^6.1.2",
"pouchdb-adapter-localstorage": "^6.1.2",
"pouchdb-adapter-memory": "^6.1.2",
"pouchdb-adapter-websql": "^6.1.2",
"pouchdb-replication": "^6.1.2",
"pre-commit": "1.2.2",
"random-int": "1.0.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"request-promise-native": "1.0.3",
"rimraf": "^2.6.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-sizes": "^0.3.0",
"rollup-plugin-uglify": "1.0.1",
"rxjs": "5.2.0",
"typescript": "^2.2.1",
"uglify-js": "^2.8.14",
"watch": "^1.0.2",
"watchify": "3.9.0",
"webpack": "2.2.1",
"webpack-dev-server": "^2.3.0"
}
}