This repository has been archived by the owner on Jul 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "@accounts/mongo",
"version": "0.1.0-beta.3",
"description": "MongoDB adaptor for accounts",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "tsc --watch",
"compile": "tsc",
"test":
"yarn lint && yarn coverage && yarn prettier-diff && yarn run compile",
"testonly": "jest --forceExit",
"lint": "tslint -c tslint.json '{src,__tests__}/**/*.ts'",
"prettier": "prettier '{src,__tests__}/**/*.ts' 'README.md'",
"prettier-diff": "yarn prettier --list-different",
"format": "yarn prettier --write",
"coverage": "yarn testonly --coverage",
"codecov": "codecov",
"precommit": "pretty-quick --staged"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"renovate": {
"extends": ["config:base"],
"automerge": true,
"major": {
"automerge": false
}
},
"files": ["src", "lib"],
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "./__tests__/.*.ts$",
"moduleFileExtensions": ["ts", "js"]
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/mongo.git"
},
"author": "Leo Pradel",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-accounts/mongo/issues"
},
"homepage": "https://github.com/js-accounts/mongo",
"devDependencies": {
"@accounts/common": "0.1.0-beta.3",
"@accounts/server": "0.1.0-beta.3",
"@accounts/tslint-config-accounts": "0.0.9",
"@types/jest": "22.2.0",
"@types/lodash": "4.14.104",
"@types/mongodb": "3.0.7",
"@types/node": "9.4.7",
"codecov": "3.0.0",
"coveralls": "3.0.0",
"husky": "0.14.3",
"jest": "22.4.2",
"prettier": "1.11.1",
"pretty-quick": "1.4.1",
"ts-jest": "22.4.1",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"peerDependencies": {
"@accounts/common": "^0.1.0-beta.3",
"@accounts/server": "^0.1.0-beta.3"
},
"dependencies": {
"lodash": "^4.17.4",
"mongodb": "^3.0.0"
}
}