-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
68
69
70
{
"name": "@minicss/core",
"version": "1.0.0-alpha.4",
"description": "MiniCSS core package",
"license": "MIT",
"author": "Ardalan Amini <[email protected]> (https://ardalanamini.com/)",
"homepage": "https://github.com/minicss/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/minicss/core.git"
},
"bugs": {
"url": "https://github.com/minicss/core/issues"
},
"keywords": [
"min",
"mini",
"minify",
"minifier",
"css",
"core",
"minicss"
],
"sideEffects": false,
"engines": {
"node": ">= 16.0.0"
},
"main": "build/cjs/index.js",
"types": "build/cjs/index.d.ts",
"module": "build/esm/index.js",
"exports": {
".": {
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
},
"default": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.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__",
"lint:fix": "npm run lint -- --fix",
"docs": "typedoc",
"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"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-noir": "^1.2.1",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}