-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "postcss-scrollbar",
"version": "0.5.1",
"description": "PostCSS plugin enabling custom scrollbars",
"keywords": [
"css",
"scrollbar",
"postcss",
"postcss-plugin"
],
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"homepage": "https://github.com/pascalduez/postcss-scrollbar",
"bugs": "https://github.com/pascalduez/postcss-scrollbar/issues",
"repository": {
"type": "git",
"url": "git://github.com/pascalduez/postcss-scrollbar.git"
},
"license": "Unlicense",
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"UNLICENSE"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"lint:js": "eslint src/ test/",
"lint": "run-s lint:*",
"format:check": "prettier -l '{src,test}/**/*.{js,css}'",
"format:write": "prettier --write '{src,test}/**/*.{js,css}'",
"validate": "run-s lint format:check",
"test": "jest",
"test:ci": "run-s 'test --coverage'",
"develop": "babel-node develop/",
"prebuild": "rm -rf dist/",
"build": "rollup -c",
"prepare": "run-s build",
"prepublishOnly": "run-s validate test"
},
"dependencies": {
"postcss-selector-parser": "^6.0.10",
"postcss-value-parser": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.5",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/preset-env": "^7.18.2",
"babel-eslint": "^10.1.0",
"common-tags": "^1.8.2",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"npm-run-all": "^4.0.2",
"postcss": "^8.4.14",
"postcss-reporter": "^6.0.1",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}