forked from ColinEberhardt/applause-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.9 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
{
"name": "applause-button",
"description": "A zero-configuration button for adding applause / claps / kudos to web pages and blog-posts",
"version": "0.0.0-semantically-managed",
"main": "dist/applause-button.js",
"type": "module",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-external-helpers": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@jest/globals": "^29.7.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.16.11",
"jest": "^29.7.0",
"jest-puppeteer": "^10.1.1",
"prettier": "^3.3.3",
"puppeteer": "^23.5.2",
"rollup": "^4.24.0",
"rollup-plugin-import-css": "^3.5.4",
"semantic-release": "^24.1.2"
},
"scripts": {
"test": "yarn run test:prettier && yarn run test:jest",
"test:jest": "yarn run build && jest",
"test:prettier": "prettier --check **/*.js",
"test:serve": "node test/serve.js",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepack": "yarn run build",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"@ungap/custom-elements": "^1.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ColinEberhardt/applause-button.git"
},
"jest": {
"preset": "jest-puppeteer"
},
"engines": {
"node": ">=18.17.0"
},
"release": {
"plugins": [
["@semantic-release/commit-analyzer", {
"releaseRules": [
{ "type": "docs", "release": "patch" }
]
}],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"provenance": true
},
"browserslist": ["partially supports custom-elementsv1"],
"packageManager": "[email protected]"
}