This repository was archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.36 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.36 KB
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
{
"name": "flystyles",
"version": "2.23.3",
"description": "Flywire UI Framework",
"author": "Javier Arques <javier.arques@flywire.com>",
"style": "dist/flystyles.css",
"sass": "src/flystyles.scss",
"main": "./dist",
"scripts": {
"css:build": "node_modules/.bin/sass src/flystyles.scss dist/css/flystyles.css",
"css:autoprefix": "node_modules/.bin/postcss --use autoprefixer -o dist/css/flystyles.css dist/css/flystyles.css",
"css:minify": "node_modules/.bin/cleancss -o dist/css/flystyles.min.css dist/css/flystyles.css",
"build": "npm run css:build && npm run css:autoprefix && npm run css:minify",
"css:docs": "node_modules/.bin/sass docs/_scss/main.scss docs/css/main.css --style=expanded",
"version": "npm run build && npm run css:docs && git add -A dist",
"postversion": "git push && git push --tags",
"yalc:publish": "npm run build && yalc publish --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peertransfer/flystyles.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/peertransfer/flystyles/issues"
},
"homepage": "https://github.com/peertransfer/flystyles#readme",
"devDependencies": {
"autoprefixer": "^6.7.4",
"clean-css-cli": "^4.3.0",
"postcss-cli": "^3.2.0",
"sass": "^1.47.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}