-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 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
{
"name": "postcss-ic-unit",
"version": "2.0.0",
"description": "Use the ic length unit in CSS",
"author": "Huáng Jùnliàng <i@jhuang.me>",
"license": "CC0-1.0",
"repository": "JLHwung/postcss-ic-unit",
"homepage": "https://github.com/JLHwung/postcss-ic-unit#readme",
"bugs": "https://github.com/JLHwung/postcss-ic-unit/issues",
"main": "./dist/index.bundle.cjs",
"type": "module",
"exports": {
"import": "./dist/index.bundle.mjs",
"require": "./dist/index.bundle.cjs"
},
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c .rollup.mjs",
"check:js": "eslint *.[cm]js --cache --ignore-path .gitignore --quiet",
"check:spelling": "yaspeller -c package.json --lang en --ignore-uppercase --ignore-roman-numerals --ignore-urls README.md",
"prepublishOnly": "yarn test",
"check": "yarn check:js && yarn check:spelling",
"test": "yarn build && echo 'Running tests...'; yarn check && yarn test:tape",
"test:tape": "postcss-tape --config .tape.cjs"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/eslint-parser": "7.24.1",
"@babel/preset-env": "7.24.4",
"@rollup/plugin-babel": "5.3.1",
"ajv": "8.12.0",
"eslint": "8.57.0",
"eslint-config-dev": "2.0.0",
"postcss": "8.4.38",
"postcss-tape": "6.0.1",
"pre-commit": "1.2.2",
"rollup": "2.38.2",
"yaspeller": "10.0.1"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"eslintConfig": {
"extends": "dev",
"parser": "@babel/eslint-parser"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"values",
"ic",
"length"
],
"yaspeller": {
"dictionary": [
"Webpack",
"PostCSS"
]
}
}