-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 947 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 947 Bytes
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
{
"name": "css-clamp",
"version": "1.1.0",
"description": "Generate css clamps.",
"author": "Petter Walbø Johnsgård",
"homepage": "https://github.com/walbo/css-clamp/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/walbo/css-clamp.git"
},
"bugs": "https://github.com/walbo/css-clamp/issues",
"keywords": [
"css",
"clamp"
],
"license": "GPL-2.0-or-later",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=6.9"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"scripts": {
"build": "del-cli ./dist && tsc -p ./tsconfig.json",
"test": "jest",
"format": "prettier . --write"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"del-cli": "^5.0.0",
"jest": "29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"cosmiconfig": "^8.2.0"
},
"publishConfig": {
"access": "public"
}
}