-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "yarn-outdated-notifier",
"version": "1.1.0",
"description": "Add link to CHANGELOG the result of `$ yarn outdated`, and notify to GitHub Issue.",
"bin": {
"outdated-notifier": "bin/index.js"
},
"scripts": {
"test": "yarn test:lint && yarn test:unit",
"test:lint": "eslint \"lib/**/*.js\" .eslintrc.js --no-ignore",
"test:unit": "jest",
"test:watch": "yarn test:unit --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cats-oss/yarn-outdated-notifier.git"
},
"keywords": [
"yarn",
"outdated",
"notifier",
"package-maintenance",
"changelog"
],
"author": "CyberAgent, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/cats-oss/yarn-outdated-notifier/issues"
},
"homepage": "https://github.com/cats-oss/yarn-outdated-notifier#readme",
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.2",
"jest": "^22.4.2"
},
"dependencies": {
"chalk": "^2.3.1",
"github-url-from-git": "^1.5.0",
"handlebars": "^4.0.11",
"humanize-duration": "^3.12.1",
"meow": "^4.0.0",
"node-emoji": "^1.8.1",
"request": "^2.83.0",
"yarn-outdated-formatter": "^2.0.0"
}
}