-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "git-appraise",
"version": "1.0.3",
"description": "Wrapper around git-appraise",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": ["code-review", "git", "git-appraise", "nodejs", "typescript"],
"scripts": {
"precommit": "lint-staged",
"prepare": "npm run build",
"build": "tsc"
},
"lint-staged": {
"*.{ts,json,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thiht/node-git-appraise.git"
},
"author": "Thibaut Rousseau",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thiht/node-git-appraise/issues"
},
"homepage": "https://github.com/Thiht/node-git-appraise#readme",
"devDependencies": {
"@types/node": "^8.9.4",
"@types/which": "^1.3.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"prettier": "1.11.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"typescript": "^2.7.2"
},
"dependencies": {
"which": "^1.3.0"
}
}