This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.7 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": "@aztlan/swatch",
"author": "Adrian V.",
"version": "0.5.0",
"description": "",
"repository": "github:AztlanEngineering/swatch",
"main": "dist/main.min.css",
"keywords": [],
"license": "MIT",
"scripts": {
"prepublish": "npm run build:main",
"filesize": "node scripts/filesize.js",
"compile:main": "sass src/main.scss dist/main.css -c -I node_modules/ --no-source-map && npm run filesize -- dist/main.css",
"compile:custom": "sass custom.scss custom.css -c -I node_modules/ --no-source-map && npm run filesize -- custom.css",
"minify:main": "postcss dist/main.css -o dist/main.min.css && npm run filesize -- dist/main.min.css",
"minify:custom": "postcss custom.css -o custom.min.css && npm run filesize -- custom.min.css",
"build:main": "npm run compile:main && npm run minify:main",
"build:custom": "npm run compile:custom && npm run minify:custom",
"postinstall": "node ./scripts/postinstall.js",
"testconfig:stylelint": "stylelint src/main.scss",
"version:alpha": "npm version prerelease --preid=alpha",
"version:beta": "npm version prerelease --preid=beta",
"test:stylelint": "stylelint src/**/*.scss --rd --rdd --risd --color --formatter verbose",
"fix:stylelint": "npm run test:stylelint -- --fix",
"test": "npm run test:stylelint"
},
"devDependencies": {
"css-mqpacker": "^7.0.0",
"cssnano": "^5.1.14",
"filesize": "^10.0.6",
"jsonlint": "^1.6.3",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-preset-env": "^8.0.1",
"postcss-scss": "^4.0.6",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-palantir": "^6.0.1",
"stylelint-scss": "^4.3.0"
},
"dependencies": {}
}