-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
{
"name": "at-rule-packer",
"version": "0.4.2",
"description": "Merge duplicate CSS media query and other at-rule rules together.",
"keywords": [
"at-rule",
"atrule",
"postcss",
"plugin",
"postcss-plugin",
"css",
"merge",
"pack",
"media",
"query",
"queries",
"supports"
],
"main": "dist/postcss/index.js",
"types": "dist/postcss/index.d.ts",
"scripts": {
"build": "tsc --outDir dist",
"pretest": "eslint tool/*.[tj]s postcss/*.[tj]s test/*.[tj]s",
"test": "npm run build && jest",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/soluml/at-rule-packer/"
},
"bugs": {
"url": "https://github.com/soluml/at-rule-packer/issues"
},
"files": [
"dist/postcss/**/*",
"dist/tool/**/*"
],
"author": {
"name": "Benjamin Solum",
"email": "[email protected]",
"url": "http://soluml.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"postcss": "8.x"
},
"jest": {
"rootDir": ".",
"testMatch": [
"**/test/*.js"
]
}
}