This repository has been archived by the owner on Jan 10, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
{
"name": "github-sponsors",
"version": "1.0.1",
"description": "Prompt your users to donate after `npm install`",
"main": "./lib/github-sponsors.js",
"module": "./lib/github-sponsors.es.js",
"jsnext:main": "./lib/github-sponsors.es.js",
"bin": "./bin/github-sponsors.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"test": "jest",
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"prettier": "prettier --no-config --write '{src,__{tests,mocks}__}/**/*.js'",
"lint": "eslint src/",
"justatest": "./bin/github-sponsors.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ffloriel/github-sponsors.git"
},
"keywords": [
"github",
"sponsors",
"opencollective",
"community",
"bridge",
"ko-fi",
"tidelift",
"donate",
"donation",
"fundoss",
"npm"
],
"author": "Ffloriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ffloriel/github-sponsors/issues"
},
"homepage": "https://github.com/Ffloriel/github-sponsors#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"codacy-coverage": "^3.4.0",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"rollup": "^1.12.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"yaml": "^1.6.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.2.0"
}
}