-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.55 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"bin/",
"lib/",
"src/"
],
"name": "get-github-pr-review-comments",
"version": "1.2.2",
"description": "Get PR review comments.",
"main": "lib/GitHub.js",
"bin": {
"get-github-pr-review-comments": "bin/cmd.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"precommit": "lint-staged",
"postcommit": "git reset"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/get-github-pr-review-comments.git"
},
"bugs": {
"url": "https://github.com/azu/get-github-pr-review-comments/issues"
},
"homepage": "https://github.com/azu/get-github-pr-review-comments",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-jsdoc-to-assert": "^4.0.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-power-assert": "^1.0.0",
"babel-register": "^6.23.0",
"cross-env": "^3.1.4",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"prettier": "^1.10.2"
},
"dependencies": {
"github": "^9.1.0",
"meow": "^3.7.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
}
}