-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
{
"name": "@azimutlabs/rollup-root",
"private": true,
"description": "Rollup configurations for the best package bundling experience",
"keywords": [
"config",
"rollup",
"rollup-config",
"alabs",
"azimutlabs"
],
"homepage": "https://github.com/azimutlabs/rollup#readme",
"bugs": {
"url": "https://github.com/azimutlabs/rollup/issues",
"email": "npm@alabs.team"
},
"repository": {
"type": "git",
"url": "https://github.com/azimutlabs/rollup.git"
},
"license": "MIT",
"author": "Azimut Labs <opensource@alabs.team>",
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"compile": "yarn lerna run --no-private compile && yarn lerna run --scope='@azimutlabs/rollup-example-*' compile",
"postinstall": "husky install",
"lint": "yarn lint:files .",
"lint:files": "yarn eslint --cache --max-warnings 0",
"test": "yarn packages/tests test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-lerna-scopes"
]
},
"lint-staged": {
"packages/**/*.[jt]s?(x)": [
"yarn lint:files"
]
},
"eslintConfig": {
"extends": [
"@azimutlabs/eslint-config-core",
"@azimutlabs/eslint-config-import",
"@azimutlabs/eslint-config-typescript",
"@azimutlabs/eslint-config-functional",
"@azimutlabs/eslint-config-prettier"
]
},
"eslintIgnore": [
"**/lib"
],
"devDependencies": {
"@azimutlabs/eslint-config-core": "^0.1.6",
"@azimutlabs/eslint-config-functional": "^0.1.1",
"@azimutlabs/eslint-config-import": "^0.2.1",
"@azimutlabs/eslint-config-prettier": "^0.1.3",
"@azimutlabs/eslint-config-typescript": "^0.2.8",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@commitlint/config-lerna-scopes": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.19.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^5.1.1",
"lerna": "^3.20.2",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.1.4"
}
}