-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.71 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
{
"name": "github-comment-manager",
"version": "1.1.5",
"description": "Github commenting made easy",
"main": "lib/index.js",
"dependencies": {
"request": "^2.87.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-prettier": "^2.6.0",
"lerna": "^2.11.0",
"lint-staged": "^7.1.2",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1",
"release-documentation-cli": "^1.4.1",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0"
},
"scripts": {
"build": "babel src -d lib --copy-files",
"lint": "./node_modules/.bin/eslint src/* --fix",
"lint-staged": "lint-staged",
"test": "nyc mocha -r chai/register-should --require babel-core/register './src/**/*.test.js'",
"prepare": "npm run build",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"release:bump-version": "release bump-version",
"release:new": "release new --approved --scheduled --skipReleaseNotes"
},
"lint-staged": {
"src/**/*.js": [
"lint",
"git add"
]
},
"pre-commit": [
"precommit-msg",
"lint-staged"
],
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.test.js",
"src/index.js"
],
"sourceMap": true,
"instrument": true,
"require": [
"babel-register"
],
"all": true,
"reporter": [
"html",
"text-summary"
]
},
"keywords": [],
"author": "News UK & Ireland Ltd",
"license": "BSD-3-Clause"
}