generated from okikio/spring-easing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.68 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
102
103
104
105
106
107
108
{
"name": "postcss-spring-easing",
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"description": "PostCSS plugin to add that bounce and boogie that only springs can bring",
"umd": "PostcssSpringEasing",
"access": "public",
"legacy": "lib/index.js",
"main": "lib/index.cjs",
"types": "lib/index.d.ts",
"browser": "lib/index.mjs",
"module": "lib/index.mjs",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs",
"default": "./lib/index.mjs"
},
"./lib/*": "./lib/*",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"directories": {
"lib": "./lib",
"src": "./src"
},
"files": [
"lib",
"src"
],
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"build": "vite build",
"pre-release": "pnpm test:run && pnpm build",
"semantic-release": "semantic-release"
},
"changelog": {
"repo": "postcss-spring-easing",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"revert": ":rewind: Revert"
},
"cacheDir": ".changelog"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --verbose"
}
},
"repository": {
"type": "git",
"url": "https://github.com/okikio/postcss-spring-easing.git"
},
"keywords": [
"spring-easing",
"typescript",
"animation",
"easing",
"spring",
"postcss",
"css",
"postcss-plugin",
"linear-easing",
"custom-easing"
],
"author": {
"name": "Okiki Ojo",
"email": "hey@okikio.dev",
"url": "https://okikio.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/okikio/postcss-spring-easing/issues"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^11.0.3",
"conventional-changelog-conventionalcommits": "^6.0.0",
"husky": "^8.0.3",
"pnpm": "^8.6.1",
"semantic-release": "^21.0.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.32.0"
},
"peerDependencies": {
"postcss-value-parser": "^4.2.0",
"spring-easing": "^2.3.1"
},
"dependencies": {
"postcss": "^8.4.24",
"postcss-value-parser": "^4.2.0",
"spring-easing": "^2.3.3"
}
}