forked from yarastqt/postcss-theme-fold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 885 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
{
"name": "postcss-theme-fold",
"version": "1.2.0",
"main": "index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf lib",
"prepublishOnly": "npm run build",
"test": "jest --coverage",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"keywords": [
"postcss",
"postcss-plugin",
"whitepaper",
"css variable"
],
"author": "Eugene Tropin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"jest": "24.9.0",
"ts-jest": "24.2.0",
"typescript": "3.7.3"
},
"dependencies": {
"postcss": "7.0.24",
"postcss-color-function": "4.1.0",
"postcss-import": "12.0.1",
"postcss-simple-vars": "5.0.2"
},
"files": [
"lib",
"index.js"
]
}