-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "postcss-input-range",
"version": "6.0.0",
"description": "Style range inputs with unprefixed pseudo-classes",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "jonathantneal/postcss-input-range",
"homepage": "https://github.com/jonathantneal/postcss-input-range#readme",
"bugs": "https://github.com/jonathantneal/postcss-input-range/issues",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"CHANGELOG.md",
"LICENSE.md",
"README.md",
"dist"
],
"scripts": {
"build": "rollup --config .rollup.mjs --silent",
"clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"test": "postcss-tape"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"postcss-selector-parser": "^7.0.0"
},
"devDependencies": {
"postcss": "^8.4.6",
"postcss-tape": "^6.0.1",
"rollup": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"postcssConfig": {
"config": ".tape.js"
},
"keywords": [
"postcss",
"css",
"postcss-plugin",
"styles",
"ranges",
"inputs",
"types",
"pseudos",
"classes",
"thumbs",
"tracks"
]
}