-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
64 lines (64 loc) · 2.38 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
{
"name": "pouchdb-react-native-bundle",
"version": "7.0.0",
"description": "Package Bundle for PouchDB for ReactNative",
"repository": {
"type": "git",
"url": "git+https://github.com/stockulus/pouchdb-react-native.git"
},
"keywords": [
"pouchdb",
"react-native",
"asyncstorage",
"offlinefirst"
],
"scripts": {
"test": "echo 'have to repair the tests'",
"test-unit": "mocha -r tests/setup.js pouchdb-original/tests/unit/test.*.js",
"test-mapreduce": "COUCH_HOST=http://localhost:3000 mocha -r tests/setup.js pouchdb-original/tests/mapreduce/test.*.js",
"test-integration": "COUCH_HOST=http://localhost:3000 mocha -r tests/setup.js pouchdb-original/tests/integration/test.*.js",
"test-integration-subset": "COUCH_HOST=http://localhost:3000 ./tests/run-integration.sh",
"run-couchdb": "docker run -d -p 3000:5984 --name couchdb klaemo/couchdb:latest",
"lint": "eslint ./packages",
"clean": "rm -rf packages/**/node_modules && rm -rf ./example/node_modules && rm -rf ./pouchdb-original/node_modules && rm -rf ./node_modules",
"postinstall": "for D in ./packages/*; do cd $D; npm install; cd -; done && cd example && npm install && cd ../pouchdb-original && npm install",
"updtr": "updtr --save-exact && cd example && updtr --save-exact && cd .. && for D in ./packages/*; do echo $D; cd $D; npm run updtr; cd -; done"
},
"author": {
"name": "Christoph Stock",
"email": "stockulus@icloud.com",
"url": "https://twitter.com/stockulus"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stockulus/pouchdb-react-native/issues"
},
"homepage": "https://github.com/stockulus/pouchdb-react-native#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "8.2.6",
"babel-jest": "23.4.2",
"eslint": "5.3.0",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0",
"eslint-config-standard-jsx": "5.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-standard": "3.1.0",
"mocha": "5.2.0",
"prettier": "1.14.2",
"react": "16.4.2",
"react-native": "0.57.6",
"react-native-mock": "0.3.1",
"updtr": "2.0.0"
},
"standard": {
"ignore": [
"node_modules/**",
"pouchdb-original/**"
]
}
}