-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "@wynd/git-hook",
"version": "1.2.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Git Hook with Wynd rules. Can be extended. Meant to be globally installed. Node 6+ compatible and dependency-less.",
"repository": {
"type": "git",
"url": "git@github.com:Wynd-Lab/git-hook.git"
},
"author": "Lilian Saget-Lethias <lsagetlethias@wynd.eu>",
"scripts": {
"build": "rimraf dist/* && tsc -p ./src/tsconfig.json",
"lint": "tslint --project src/tsconfig.json -c tslint.json 'src/**/*.ts*'"
},
"dependencies": {
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/node": "^13.5.1",
"@types/rimraf": "^2.0.3",
"@wynd/tslint-config-wynd": "^2.0.0",
"rimraf": "^3.0.1",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"files": [
"dist/"
],
"keywords": [
"git",
"hook",
"wynd"
]
}