-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "cessie",
"version": "2.0.1",
"description": "Transpile your CSS bundle to support CSS variables, calc, and future CSS for non supported browsers.",
"main": "index.js",
"bin": {
"cessie": "./bin.js"
},
"scripts": {
"prettier": "prettier --write index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ie11",
"css variables",
"css calc",
"postcss",
"transpile"
],
"author": "Bjarne Oeverli",
"license": "MIT",
"repository": "bjarneo/cessie",
"dependencies": {
"autoprefixer": "^9.5.1",
"css": "^2.2.4",
"file-extension": "^4.0.5",
"less": "^3.9.0",
"log-timestamp": "^0.3.0",
"meow": "^5.0.0",
"node-sass": "^4.12.0",
"node-watch": "^0.6.2",
"postcss": "^8.2.13",
"postcss-calc": "^7.0.1",
"postcss-csso": "^3.0.0",
"postcss-custom-properties": "^8.0.10",
"postcss-preset-env": "^6.6.0"
},
"devDependencies": {
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"index.js": [
"prettier --write"
]
}
}