-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "eleventy-filter-npm-package-downloads",
"version": "0.4.0",
"description": "Filter for 11ty to show the number of downloads of a npm package.",
"main": "index.js",
"scripts": {
"snyk": "snyk test",
"test": "npm run test:ci",
"test:ci": "nyc ava --tap | tap-xunit > coverage/junit.xml",
"test:coverage": "nyc ava"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Ryuno-Ki/eleventy-filter-npm-package-downloads.git"
},
"keywords": [
"eleventy",
"eleventy-plugin",
"filter",
"npm downloads"
],
"files": [
"src/",
"test/",
"README.md",
"DCO.txt",
"LICENSE",
"package.json",
"index.js"
],
"author": "André Jaenisch",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ryuno-Ki/eleventy-filter-npm-package-downloads/issues"
},
"homepage": "https://github.com/Ryuno-Ki/eleventy-filter-npm-package-downloads#readme",
"peerDependencies": {
"@11ty/eleventy": ">=3.0.x"
},
"dependencies": {
"axios": "1.7.9",
"snyk": "1.1294.2"
},
"devDependencies": {
"ava": "6.2.0",
"nyc": "17.1.0",
"tap-xunit": "2.4.1"
},
"snyk": true
}