forked from badges/shields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gh-badges",
"version": "1.3.0",
"description": "Official Shields.io badge library.",
"keywords": [
"GitHub",
"badge",
"SVG",
"image",
"shields.io"
],
"homepage": "http://shields.io",
"bugs": {
"url": "https://github.com/badges/shields/issues",
"email": "[email protected]"
},
"license": "CC0-1.0",
"author": "Thaddée Tyl <[email protected]>",
"main": "lib/badge.js",
"repository": {
"type": "git",
"url": "https://github.com/badges/shields"
},
"dependencies": {
"camp": "~16.2.3",
"chrome-web-store-item-property": "~1.1.2",
"dot": "~1.0.3",
"gm": "^1.23.0",
"json-autosave": "~1.1.2",
"lodash.countby": "^4.6.0",
"moment": "^2.18.1",
"pdfkit": "~0.8.0",
"pretty-bytes": "^4.0.2",
"redis": "~2.6.2",
"request": "~2.83.0",
"semver": "~5.4.1",
"svgo": "~0.7.1",
"xml2js": "~0.4.16"
},
"scripts": {
"coverage:test:js": "nyc node_modules/mocha/bin/_mocha '*.spec.js' 'lib/*.spec.js'",
"coverage:test:services": "nyc node_modules/mocha/bin/_mocha --delay service-tests/runner/cli.js",
"coverage:test": "rimraf .nyc_output coverage; npm run coverage:test:js; npm run coverage:test:services",
"coverage:report": "nyc report",
"coverage:report:reopen": "opn coverage/lcov-report/index.html",
"coverage:report:open": "npm run coverage:report && npm run coverage:report:reopen",
"lint": "eslint '**/*.js'",
"test:js": "mocha lib '*.spec.js'",
"test:services": "mocha --delay service-tests/runner/cli.js",
"test:services:pr:prepare": "node service-tests/runner/pull-request-services-cli.js > pull-request-services.log",
"test:services:pr:run": "mocha --delay service-tests/runner/cli.js --stdin < pull-request-services.log",
"test:services:pr": "npm run test:services:pr:prepare && npm run test:services:pr:run",
"test": "npm run lint && npm run test:js"
},
"bin": {
"badge": "./gh-badge.js"
},
"files": [
"README.md",
"gh-badge.js",
"lib/badge.js",
"lib/colorscheme.json",
"lib/lru-cache.js",
"lib/measure-text.js",
"lib/svg-to-img.js",
"templates",
"logo"
],
"devDependencies": {
"child-process-promise": "^2.2.1",
"dejavu-fonts-ttf": "^2.37.3",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"glob": "^7.1.1",
"icedfrisby": "^1.4.0",
"icedfrisby-nock": "^1.0.0",
"is-png": "^1.1.0",
"is-svg": "^2.1.0",
"lodash.difference": "^4.5.0",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"node-fetch": "^1.6.3",
"nyc": "^11.2.1",
"opn-cli": "^3.1.0",
"prettier": "1.7.4",
"read-all-stdin-sync": "^1.0.5",
"rimraf": "^2.6.2",
"semver-regex": "^1.0.0",
"sinon": "^4.0.1"
},
"engines": {
"node": ">= 6"
}
}