-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.12 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.12 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
{
"name": "@eigenspace/helper-scripts",
"version": "5.0.0",
"private": false,
"main": "index.js",
"repository": "https://github.com/eigen-space/common-scripts.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",
"common",
"utils",
"scripts"
],
"scripts": {
"build": "yarn compile && node ./dev/scripts/copy-assets.js",
"compile": "tsc",
"lint:code": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint:code --fix",
"lint:markdown": "node ./node_modules/@eigenspace/codestyle/scripts/markdown-lint.js",
"lint": "yarn lint:code . && yarn lint:markdown",
"test": "jest --passWithNoTests",
"test:ci": "jest --ci",
"hooks:pre-push": "yarn lint",
"hooks:pre-commit": "lint-staged",
"deploy:publish": "npx -p @eigenspace/package-publisher publish",
"script:update-deps-remote": "npx -p @eigenspace/helper-scripts update-deps"
},
"husky": {
"hooks": {
"pre-push": "yarn hooks:pre-push",
"pre-commit": "yarn hooks:pre-commit"
}
},
"lint-staged": {
"*.ts": [
"yarn lint:fix",
"git add"
]
},
"bin": {
"update-deps": "./scripts/project/update-deps/index.js"
},
"dependencies": {
"@eigenspace/argument-parser": "1.0.2"
},
"devDependencies": {
"@eigenspace/codestyle": "3.0.3",
"@eigenspace/commit-linter": "0.0.21",
"@eigenspace/common-types": "0.0.20",
"@types/jest": "26.0.15",
"@types/node": "11.9.5",
"eslint": "7.13.0",
"eslint-plugin-eigenspace-script": "0.1.3",
"husky": "1.3.1",
"jest": "26.6",
"lint-staged": "8.1.5",
"ts-jest": "26.4.4",
"typescript": "3.8.2"
}
}