-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·101 lines (101 loc) · 3.44 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": "@ptkdev/webcomponent-patreon-box",
"description": "My Patreon Tier Box with avatars and link from rest/json api.",
"version": "1.1.0",
"main": "dist/lib/en/patreon-box.min.js",
"author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev-components/webcomponent-patreon-box",
"docs": "https://docs.github.com/ptkdev-components/webcomponent-patreon-box",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev-components/webcomponent-patreon-box.git"
},
"bugs": {
"url": "https://github.com/ptkdev-components/webcomponent-patreon-box/issues"
},
"scripts": {
"dev": "gulp start --build=\"dev\"",
"release": "rm -rf dist && npm run dist && node scripts/release.js && gulp wordpress-plugin && zip -j dist/wordpress/patreon-box-wordpress-plugin.zip dist/wordpress/patreon-box.php",
"dist": "gulp dist --build=\"dev\"",
"build": "gulp release --build=\"prod\"",
"example": "serve examples",
"clean": "rm -rf node_modules package-lock.json && npm install",
"update": "rm -f package-lock.json && npm update",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint-fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"git-set-upstream": "git remote add upstream git@github.com:ptkdev-components/webcomponent-patreon-box.git && git fetch upstream",
"git-pull-upstream": "git pull upstream master && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish-master": "git checkout master && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"docs": "git submodule update --recursive && markserv ./README.md",
"test": "jest",
"contributors-generate": "all-contributors generate"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run contributors-generate"
}
},
"keywords": [
"ptkdev",
"webcomponents",
"webcomponent",
"HTMLElement",
"CustomElements",
"patreon",
"patreon photos",
"patreon box",
"patreon backers",
"patreon widget",
"patreon tier widget"
],
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@ptkdev/logger": "latest",
"express": "latest",
"express-session": "latest",
"node-fetch": "latest",
"browser-sync": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-snakecasejs": "latest",
"eslint-plugin-standard": "latest",
"all-contributors-cli": "latest",
"gulp": "latest",
"gulp-concat": "latest",
"gulp-clean-css": "latest",
"gulp-terser": "latest",
"gulp-rename": "latest",
"gulp-nodemon": "latest",
"gulp-nunjucks": "latest",
"gulp-nunjucks-render": "latest",
"gulp-data": "latest",
"gulp-run": "latest",
"gulp-sass": "latest",
"pm2": "latest",
"json": "latest",
"chai": "latest",
"jest": "latest",
"husky": "latest",
"yargs": "latest",
"serve": "latest",
"markserv": "latest"
},
"contributors": [
"Emanuele Fricano <emanuelefricano93@gmail.com>"
]
}