forked from medic/couch2pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "couch2pg",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/vimemo/couch2pg",
"author": "",
"license": "MIT",
"scripts": {
"ci": "jest --coverage --projects jest-*.config.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "jest --coverage --projects jest-*.config.js",
"test-coverage": "jest --coverage",
"watch:test": "jest --coverage --projects jest-*.config.js --watch",
"build": "babel ./lib -d ./dist",
"start": "node ./dist",
"dev": "babel-node ./lib"
},
"dependencies": {
"knex": "^0.14.4",
"loglevel": "^1.6.1",
"pg": "^7.4.1",
"pg-format": "^1.0.4",
"postgrator": "^3.5.0",
"pouchdb": "^6.4.3",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.0",
"curl-request": "1.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.3",
"jest-runner-eslint": "^0.4.0",
"jest-runner-prettier": "^0.2.2",
"prettier": "1.12.1",
"underscore": "^1.8.3"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/tests/**/*.js"
],
"collectCoverageFrom": [
"lib/**/*.{js}"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"mocks"
],
"verbose": true,
"globalSetup": "<rootDir>/setup.js"
}
}