-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@utilitycss/css-mqpacker",
"version": "0.0.1",
"description": "Pack same CSS media query rules into one using PostCSS",
"homepage": "https://github.com/hail2u/node-css-mqpacker",
"bugs": {
"url": "https://github.com/hail2u/node-css-mqpacker/issues"
},
"files": [],
"main": "dist",
"author": "Sylvester Aswin Stanley <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:utilitycss/mqpacker.git"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "tape \"test/**/*.js\""
},
"dependencies": {
"postcss": "^8.2.6"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"debug": "^4.3.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.0.0",
"lint-staged": "^10.5.4",
"postcss-import": "^14.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"husky": "^4.0.0",
"lint-staged": "^10.5.4",
"tape": "^5.2.1",
"typescript": "4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --no-config --write",
"eslint --fix"
]
}
}