-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.24 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
{
"name": "animateme",
"version": "2.4.2",
"description": "Animate DOM elements when they enter the viewport",
"keywords": [
"Animation",
"Animations",
"JS Animation",
"CSS Animation",
"Scroll Animation",
"Custom Animation"
],
"homepage": "https://animate-me.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/AnimateMe/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/animate.me.min.js",
"style": "dist/animate.me.css",
"types": "dist/animate.me.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/AnimateMe"
},
"scripts": {
"build": "tsc --skipLibCheck",
"minify": "jsmin -o dist/animate.me.min.js dist/animate.me.js",
"prod": "yarn build && yarn minify && yarn copy",
"release-minor": "release-it minor --ci",
"release-patch": "release-it patch --ci",
"release-major": "release-it major --ci",
"changelog-local": "npx auto-changelog",
"copy": "cp src/animate.me.css dist/animate.me.css",
"copy:js": "cp dist/animate.me.js demo/animate.me.js",
"copy:css": "cp dist/animate.me.css demo/animate.me.css",
"copy:demo": "yarn copy:js && yarn copy:css",
"deploy": "yarn prod && yarn copy:demo"
},
"dependencies": {},
"devDependencies": {
"jsmin": "1.0.1",
"release-it": "17.10.0",
"typescript": "5.7.2"
},
"release-it": {
"hooks": {
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push"
},
"use": "pkg.version",
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}",
"requireCleanWorkingDir": true,
"requireBranch": false,
"requireUpstream": false,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release ${version}",
"commitArgs": [
"--no-verify"
],
"tag": true,
"tagName": "${version}",
"tagAnnotation": "Release ${version}",
"tagArgs": [],
"push": true,
"pushArgs": [
"--follow-tags"
],
"pushRepo": ""
},
"github": {
"release": false
},
"gitlab": {
"release": false
},
"npm": {
"publish": false
}
}
}