-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.91 KB
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
{
"name": "@eigenspace/codestyle",
"version": "3.0.5",
"description": "Eigenspace team's codestyle",
"repository": "https://github.com/eigen-space/codestyle.git",
"author": "Anton Kalashnikov <tohasan@yandex.ru>",
"contributors": [
"Anton Kalashnikov <tohasan@yandex.ru>",
"Daniil Sitdikov <hello.boriskas@gmail.com>",
"Nikita Sergeev <sergeev.nickitos@yandex.ru>",
"Nikita Agupov <nktrsk@gmail.com>"
],
"license": "MIT",
"keywords": [
"javascript",
"nodejs",
"rules",
"style",
"eslint",
"typescript",
"tsconfig"
],
"husky": {
"hooks": {
"pre-push": "yarn hooks:pre-push",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"scripts": {
"preinstall": "yarn build:subprojects",
"lint:sandbox": "eslint src/sandbox/sandbox.default.tsx",
"lint:code": "eslint --ext .ts,.js",
"lint:fix": "yarn lint:code --fix",
"lint:markdown": "node src/scripts/markdown-lint.js",
"lint": "yarn lint:code . && yarn lint:markdown",
"script:copy": "node ./dev/scripts/copy.js",
"script:extract-rules-meta-info-to-google-sheets": "node dist/scripts/extract-rules-meta-info-to-google-sheets.js",
"script:update-deps-local": "node node_modules/@eigenspace/helper-scripts/scripts/project/update-deps.js",
"test": "jest",
"test:ci": "yarn test --ci",
"compile": "tsc",
"build": "yarn script:copy",
"build:subprojects": "node ./dev/scripts/build-subprojects.js",
"postbuild": "node ./dev/scripts/postbuild.js",
"hooks:pre-push": "yarn lint && yarn test",
"deploy:publish": "node node_modules/@eigenspace/helper-scripts/scripts/ci/publish.js --projectPaths[]=/,/src/packages/eslint-plugin-eigenspace-react,/src/packages/eslint-plugin-eigenspace-redux,/src/packages/eslint-plugin-eigenspace-script"
},
"devDependencies": {
"@eigenspace/commit-linter": "0.0.18",
"@eigenspace/helper-scripts": "2.0.1",
"@types/jest": "24.0.13",
"@types/node": "10.12.21",
"@types/react": "16.8.24",
"@types/react-redux": "7.1.1",
"eslint": "7.22.0",
"eslint-plugin-eigenspace-react": "file:src/packages/eslint-plugin-eigenspace-react",
"eslint-plugin-eigenspace-redux": "file:src/packages/eslint-plugin-eigenspace-redux",
"eslint-plugin-eigenspace-script": "file:src/packages/eslint-plugin-eigenspace-script/dist",
"eslint-plugin-eigenspace-styles": "file:src/packages/eslint-plugin-eigenspace-styles",
"husky": "1.3.1",
"jest": "24.7.1",
"lint-staged": "8.1.5",
"react": "16.8.6",
"react-redux": "7.1.0",
"ts-jest": "24.1.0",
"typescript": "3.8.2"
}
}