forked from accounts-js/accounts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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
{
"private": true,
"scripts": {
"setup": "lerna bootstrap; yarn run link",
"start": "lerna exec -- yarn start",
"link": "lerna exec -- yarn link",
"unlink": "lerna exec -- yarn unlink",
"clean": "lerna run clean",
"compile": "lerna run compile",
"lint": "tslint packages/*/{src,__tests__}/**/*.ts",
"postinstall": "opencollective postinstall",
"publish": "lerna publish",
"publish:canary": "yarn run publish -- --canary",
"test": "yarn lint && yarn compile && yarn coverage && yarn test:prettier",
"testonly": "lerna run testonly",
"prettier": "prettier --write '**/*.{json,md,js,ts}'",
"test:prettier": "prettier --list-different '**/*.{json,md,js,ts}'",
"coverage": "lerna run coverage",
"codecov": "codecov"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"resolutions": {
"@types/node": "10.9.4"
},
"renovate": {
"extends": [
"config:base",
"schedule:weekly"
],
"automerge": true,
"major": {
"automerge": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/accounts"
},
"license": "MIT",
"devDependencies": {
"@accounts/tslint-config-accounts": "0.0.9",
"codecov": "3.1.0",
"husky": "1.0.0-rc.6",
"lerna": "3.3.0",
"lint-staged": "7.2.2",
"opencollective": "1.0.3",
"prettier": "1.14.2",
"ts-jest": "23.1.4",
"tslint": "5.11.0",
"typescript": "3.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/accounts-js",
"logo": "https://opencollective.com/accounts-js/logo.txt"
}
}