This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 1.65 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
{
"name": "css-typed-om",
"version": "0.4.0",
"description": "Use CSS Typed Object Model in the browser",
"author": "Jonathan Neal <[email protected]>",
"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",
"main": "index.umd.js",
"module": "index.es.js",
"files": [
"index.umd.js",
"index.es.js"
],
"scripts": {
"prepublishOnly": "npm test",
"pretest": "rollup -c .rollup.js --silent",
"test": "echo 'Running tests...'; npm run test:js && npm run test:tape",
"test:js": "eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet",
"test:tape": "node test"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-dev": "^2.0.0",
"pre-commit": "^1.2.2",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.3"
},
"eslintConfig": {
"extends": "dev",
"parser": "babel-eslint"
},
"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"
]
}