-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "apollo-type-guards",
"version": "1.4.3",
"main": "lib/index.js",
"bin": {
"apollo-type-guards": "./bin/cli.js"
},
"files": [
"lib",
"bin"
],
"repository": "git@github.com:ChibiBlasphem/apollo-types-guard.git",
"author": "Christopher Debove <chibiblasphem@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint . --ext '.js,.ts'",
"build": "babel src --out-dir lib --extensions .ts,.js --ignore='src/__tests__'"
},
"lint-staged": {
"src/**/*.ts": [
"eslint . --fix",
"prettier --write",
"jest --findRelatedTests"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@babel/generator": "^7.8.3",
"@babel/parser": "^7.8.3",
"@babel/types": "^7.8.3",
"glob": "^7.1.6",
"ora": "^5.0.0",
"yargs": "^15.4.1"
}
}