-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "@chatie/git-scripts",
"version": "0.7.10",
"description": "Git Hooks Integration for Chatie Projects",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "tsc",
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && npm run build",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts",
"lint:es": "eslint bin/**/*.ts src/**/*.ts tests/**/*.ts",
"lint:ts": "tsc --noEmit",
"postinstall": "node scripts/install.js",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
"test": "npm run lint && npm run test:unit"
},
"bin": {
"git-scripts-pre-push": "dist/bin/pre-push.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/git-scripts.git"
},
"keywords": [
"git",
"scripts",
"hooks",
"pre-push"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/git-scripts/issues"
},
"homepage": "https://github.com/Chatie/git-scripts#readme",
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx ts-node ./bin/pre-push.ts"
}
},
"dependencies": {
"git-scripts": "^0.6.2",
"pkg-up": "^3.1.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.1",
"@chatie/tsconfig": "^0.10.1",
"@types/shelljs": "^0.8.5",
"shx": "^0.3.2",
"tstest": "^0.4.10"
}
}