This repository has been archived by the owner on Jul 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 1.94 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
71
72
73
74
75
76
77
78
79
80
{
"name": "pullmaster",
"version": "0.4.0-alpha.1",
"private": false,
"description": "Master your pulls 🏋",
"main": "lib/index.js",
"scripts": {
"build": "yarn run clean && yarn babel src/ -d lib/",
"clean": "rm -rf lib",
"flow": "flow",
"lint": "eslint src",
"precommit": "lint-staged && yarn test",
"prepack": "yarn build",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"preversion": "yarn test",
"test":
"yarn lint && yarn run flow && yarn build --source-maps && yarn test-only",
"test-only": "nyc mocha -t 60000 ./lib/"
},
"engines": {
"node": ">=6.9.0",
"yarn": "^1.3.2"
},
"keywords": [
"github",
"workflow",
"pull-requests",
"automation",
"pull request",
"api"
],
"lint-staged": {
"src/**/*.{js,jsx}": ["prettier --parser flow --write", "git add"],
"**/*.{json,md}": ["prettier --write", "git add"]
},
"homepage": "https://github.com/holvonix-open/pullmaster#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/holvonix-open/pullmaster.git"
},
"author":
"Holvonix LLC and the pullmaster AUTHORS <[email protected]> (https://github.com/holvonix-open/pullmaster)",
"contributors": ["See AUTHORS file", "See CONTRIBUTORS file"],
"files": [
"lib/",
"CHANGELOG.md",
"package.json",
"LICENSE",
"AUTHORS",
"NOTICE",
"README.md",
"CONTRIBUTORS",
".flowconfig",
".babelrc",
".eslintrc.json",
".npmignore",
".gitignore",
".travis.yml",
"yarn.lock"
],
"license": "Apache-2.0",
"dependencies": {
"got": "^8.0.1",
"js-yaml": "^3.10.0"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"js-devbox": "^5.0.0",
"mocha": "^4.0.1",
"nyc": "^11.4.1",
"proxyquire": "^1.7.11",
"sinon": "^4.1.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./coverage/"
}
}