forked from accounts-js/accounts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"private": true,
"version": "0.22.0",
"scripts": {
"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 test:lint && yarn compile && yarn coverage",
"testonly": "lerna run testonly",
"prettier": "prettier --write '**/*.{json,md,js,ts}'",
"test:lint": "eslint 'packages/*/{src,__tests__}/**/*.ts'",
"test:examples": "lerna run test --scope=\"@examples/*\"",
"coverage": "lerna run coverage",
"codecov": "codecov",
"generate:changelog": "conventional-changelog -p conventionalcommits -n ./conventional-changelog.config.json -c ./conventional-changelog.context.json -i CHANGELOG.md -s",
"reset": "yarn clean; yarn install; yarn compile"
},
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"website"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"renovate": {
"extends": [
"config:base",
"schedule:monthly"
],
"automerge": true,
"major": {
"automerge": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/accounts"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"conventional-changelog-cli": "2.0.35",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"lerna": "3.22.1",
"lint-staged": "10.2.11",
"opencollective": "1.0.3",
"prettier": "2.0.5",
"ts-jest": "26.1.4",
"typescript": "3.9.7"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/accounts-js",
"logo": "https://opencollective.com/accounts-js/logo.txt"
}
}