-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.59 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.59 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
{
"name": "@eigenspace/logger",
"version": "1.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eigen-space/logger"
},
"scripts": {
"build": "tsc && yarn copy:assets",
"copy:assets": "node dev/scripts/copy-assets.js",
"lint:code": "eslint --ext .js,.ts",
"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",
"test:ci": "yarn test --ci --coverage",
"deploy:publish": "npx -p @eigenspace/package-publisher publish",
"hooks:pre-push": "yarn build && yarn lint && yarn test",
"script:update-deps-remote": "npx -p @eigenspace/helper-scripts update-deps"
},
"husky": {
"hooks": {
"pre-push": "yarn hooks:pre-push",
"pre-commit": "lint-staged",
"commit-msg": "commit-linter --message=COMMIT_MESSAGE"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"devDependencies": {
"@eigenspace/codestyle": "latest",
"@eigenspace/commit-linter": "latest",
"@eigenspace/helper-scripts": "3.0.2",
"@types/jest": "22.2.2",
"@types/node": "14.14.5",
"eslint": "7.9.0",
"eslint-plugin-eigenspace-script": "latest",
"husky": "2.3.0",
"jest": "24.7.1",
"lint-staged": "8.1.7",
"ts-jest": "24.0.2",
"typescript": "3.8.2"
}
}