-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.35 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.35 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
40
{
"name": "@athletic/web-styles",
"version": "9.0.6",
"description": "Shared styles for AthleticNet and anet-angular repos",
"scripts": {
"build": "npm-run-all web:* app:* -s",
"web:compile": "sass src/Athletic.scss:dist/Athletic.css --no-source-map",
"web:autoprefix": "postcss dist/Athletic.css --replace --use autoprefixer --no-map",
"web:minify": "postcss dist/Athletic.css --output dist/Athletic.min.css --use cssnano --no-map",
"app:compile": "sass src/Athletic.APP.scss:dist/Athletic.APP.css --no-source-map",
"app:autoprefix": "postcss dist/Athletic.APP.css --replace --use autoprefixer --no-map",
"app:minify": "postcss dist/Athletic.APP.css --output dist/Athletic.APP.min.css --use cssnano --no-map",
"patch": "npm version patch"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"not IE > 0"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AthleticNet/web-styles.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AthleticNet/web-styles/issues"
},
"homepage": "https://github.com/AthleticNet/web-styles#readme",
"devDependencies": {
"autoprefixer": "^10.4.15",
"cssnano": "^6.0.0",
"npm-run-all2": "^6.0.6",
"postcss": "^8.4.29",
"postcss-cli": "^10.1.0",
"sass": "^1.66.1"
}
}