-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.15 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.15 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
{
"name": "edmontonpy",
"version": "0.0.1",
"description": "CSS for EdmontonPy",
"author": "Andrew Crouse <amcrouse@data-get.org>",
"readmeFilename": "README.rst",
"scripts": {
"css": "npm-run-all css-compile css-minify",
"css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/style.scss dist/css/style.css",
"css-lint-main": "stylelint --syntax scss \"scss/*.scss\"",
"css-minify": "cleancss --level 1 --format breaksWith=lf --source-map --source-map-inline-sources --output dist/css/style.min.css dist/css/style.css",
"dist": "npm-run-all --parallel css",
"lint": "npm-run-all css-lint-main",
"test": "npm-run-all lint dist"
},
"devDependencies": {
"bootstrap": "^4.3.1",
"clean-css-cli": "^4.3.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^2.2.1",
"stylelint-scss": "^3.9.3"
},
"repository": {
"type": "git",
"url": "git://github.com/EdmontonPy/edmontonpy.git"
},
"private": true
}