-
Notifications
You must be signed in to change notification settings - Fork 530
/
package.json
42 lines (42 loc) · 1.44 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
{
"name": "instantsearch.css",
"version": "8.5.1",
"description": "InstantSearch.css is a CSS library to style InstantSearch-powered search experiences.",
"keywords": [
"algolia",
"instantsearch",
"search",
"css",
"theme"
],
"repository": {
"type": "git",
"url": "https://github.com/algolia/instantsearch"
},
"license": "MIT",
"author": "Algolia <[email protected]>",
"type": "module",
"scripts": {
"build": "rm -rf themes && yarn styles:build && yarn styles:minify && yarn styles:autoprefixer",
"styles:autoprefixer": "postcss themes/ --use autoprefixer --replace --no-map",
"styles:minify": "sass src/themes/algolia.scss:themes/algolia-min.css src/themes/satellite.scss:themes/satellite-min.css src/themes/reset.scss:themes/reset-min.css --no-source-map --style compressed",
"styles:build": "sass src/themes:themes --no-source-map",
"prepare": "yarn build",
"lint": "stylelint \"**/*.scss\""
},
"devDependencies": {
"autoprefixer": "10.4.13",
"postcss": "8.4.20",
"postcss-cli": "10.1.0",
"sass": "1.56.2",
"stylelint": "14.16.0",
"stylelint-a11y": "1.2.3",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-standard": "29.0.0",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-no-unsupported-browser-features": "6.0.1",
"stylelint-order": "5.0.0",
"stylelint-prettier": "2.0.0"
}
}