-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 972 Bytes
/
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
{
"name": "postcss-transition",
"description": "Allows you to set the default value for the transition shorthand property",
"version": "1.2.0",
"main": "index.bundle.js",
"author": "Mikhail Novikov <[email protected]>",
"scripts": {
"test": "jest",
"test:dev": "jest --watchs",
"build": "terser index.js -o index.bundle.js"
},
"license": "MIT",
"dependencies": {
"css-properties-values": "^1.0.0",
"postcss": "^8.4.32",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"jest": "^29.7.0",
"node-watch": "^0.7.4",
"nodemon": "^3.0.2",
"terser": "^5.26.0"
},
"files": [
"index.bundle.js"
],
"keywords": [
"postcss",
"postcss-plugin",
"postcss-transition",
"transition",
"transition defaults"
],
"homepage": "https://github.com/notiv-nt/postcss-transition",
"repository": {
"type": "git",
"url": "git+https://github.com/notiv-nt/postcss-transition.git"
}
}