forked from andrewvasilchuk/postcss-remove-declaration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "@evidenceprime/postcss-remove-declaration",
"version": "1.2.0",
"description": "Remove CSS declarations with ease",
"keywords": [
"postcss",
"postcss-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evidenceprime/postcss-remove-declaration.git"
},
"license": "MIT",
"author": "Andrew Vasilchuk <andrew.d.vasilchuk@gmail.com>, Michał Ciołczyk <michal.ciolczyk@evidenceprime.com>",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint *.ts test/*.ts",
"prebuild": "rm -rf index.js index.d.ts",
"prettier": "prettier *.ts test/*.ts --write",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch"
},
"peerDependencies": {
"postcss": ">= 8.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest-junit": {
"suiteName": "Unit Tests",
"outputDirectory": "test-results",
"outputName": "tests.xml"
}
}