forked from csstools/css-typed-om
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.68 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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "css-typed-om",
"version": "0.4.0",
"description": "A polyfill for CSS Typed OM.",
"contributors": [
"Jonathan Neal <[email protected]>",
"Tyler Gaw <[email protected]> (https://tylergaw.com)"
],
"license": "CC0-1.0",
"repository": "csstools/css-typed-om",
"homepage": "https://github.com/csstools/css-typed-om#readme",
"bugs": "https://github.com/csstools/css-typed-om/issues",
"type": "module",
"scripts": {
"prepublishOnly": "npm test",
"build": "rollup -c .rollup.js",
"start": "nodemon -e js --watch lib --exec 'npm run build'",
"pretest": "npm run build",
"test": "npm run lint && node --test",
"test:watch": "node --test --watch .",
"lint": "eslint *.js lib/*.js",
"prettier": "prettier . --write",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "0.4.3",
"eslint": "8.50.0",
"eslint-config-dev": "3.3.1",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"nodemon": "3.0.1",
"prettier": "3.0.3",
"rollup": "3.29.2"
},
"keywords": [
"css",
"number",
"percent",
"em",
"ex",
"ch",
"rem",
"vw",
"vh",
"vmin",
"vmax",
"cm",
"mm",
"in",
"pt",
"pc",
"px",
"Q",
"deg",
"grad",
"rad",
"turn",
"s",
"ms",
"Hz",
"kHz",
"dpi",
"dpcm",
"dppx",
"fr",
"StylePropertyMap",
"CSSUnitValue",
"CSSStyleValue",
"CSSKeywordValue",
"styleMap",
"attributeStyleMap",
"computedStyleMap"
]
}