-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@minicss/postcss",
"version": "1.0.0-alpha.5",
"description": "MiniCSS PostCSS Plugin",
"license": "MIT",
"author": "Ardalan Amini <ardalanamini22@gmail.com> (https://ardalanamini.com/)",
"homepage": "https://github.com/minicss/postcss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/minicss/postcss.git"
},
"bugs": {
"url": "https://github.com/minicss/postcss/issues"
},
"keywords": [
"min",
"mini",
"minify",
"css",
"minicss",
"postcss",
"plugin",
"postcss-plugin"
],
"sideEffects": false,
"engines": {
"node": ">= 16.0.0"
},
"main": "build/cjs/index.cjs.js",
"types": "build/cjs/index.cjs.d.ts",
"module": "build/esm/index.esm.js",
"exports": {
".": {
"import": {
"types": "./build/esm/index.esm.d.ts",
"default": "./build/esm/index.esm.js"
},
"default": {
"types": "./build/cjs/index.cjs.d.ts",
"default": "./build/cjs/index.cjs.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "scripts/pre-build.sh && npm run build:cjs && npm run build:esm && scripts/post-build.sh",
"build:cjs": "tsc",
"build:cjs:watch": "npm run build:cjs -- --watch",
"build:esm": "tsc -p tsconfig.esm.json",
"build:esm:watch": "npm run build:esm -- --watch",
"lint": "eslint src __tests__ scripts",
"lint:fix": "npm run lint -- --fix",
"docs": "typedoc",
"benchmark": "ts-node scripts/benchmark.ts",
"test": "node --no-compilation-cache --expose-gc node_modules/jest/bin/jest --logHeapUsage",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci --verbose --no-cache"
},
"peerDependencies": {
"@minicss/core": "^1.0.0-alpha.4",
"postcss": "^8.4.16"
},
"devDependencies": {
"@minicss/core": "^1.0.0-alpha.4",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-noir": "^1.3.0",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"postcss": "^8.4.16",
"table": "^6.8.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}