forked from accounts-js/accounts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.28 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
{
"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; rm -rf node_modules; rm -rf packages/**/node_modules; rm -rf yarn.lock",
"clean:examples": "rm -rf examples/**/node_modules; rm -rf examples/**/yarn.lock",
"compile": "lerna run compile",
"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:lint": "tslint packages/*/{src,__tests__}/**/*.ts",
"test:prettier": "prettier --list-different '**/*.{json,md,js,ts}'",
"test:examples": "lerna run test --scope=\"@examples/*\"",
"coverage": "lerna run coverage",
"codecov": "codecov",
"reset": "yarn clean; yarn install; yarn setup; yarn compile"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"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": "12.6.8",
"graphql-tools": "4.0.5"
},
"renovate": {
"extends": [
"config:base",
"schedule:monthly"
],
"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.5.0",
"husky": "3.0.1",
"lerna": "2.11.0",
"lint-staged": "9.2.1",
"opencollective": "1.0.3",
"prettier": "1.18.2",
"ts-jest": "24.0.2",
"tslint": "5.16.0",
"typedoc": "0.13.0",
"typedoc-plugin-docusaurus": "1.0.14",
"typescript": "3.5.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/accounts-js",
"logo": "https://opencollective.com/accounts-js/logo.txt"
}
}