-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mltshp-patterns",
"version": "4.1.0",
"type": "module",
"author": "Scott Vandehey",
"description": "Pattern Library for MLTSHP Apps",
"homepage": "https://github.com/MLTSHP/mltshp-patterns#readme",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MLTSHP/mltshp-patterns.git"
},
"bugs": {
"url": "https://github.com/MLTSHP/mltshp-patterns/issues"
},
"main": "./dist/main.css",
"style": "./dist/main.css",
"files": [
"/dist",
"/src/**/*.scss",
"/src/assets",
"!.gitignore"
],
"scripts": {
"start": "run-s watch",
"watch": "run-p watch:*",
"watch:scss": "sass --watch src:.temp",
"watch:postcss": "postcss .temp/*.css -d dist --watch",
"watch:content": "eleventy --serve",
"build-site": "npm run build && eleventy",
"build": "run-s build:*",
"build:clean": "npx rimraf dist",
"build:scss": "sass --no-source-map src:.temp",
"build:postcss": "postcss .temp/*.css -d dist",
"build:min": "postcss dist/*.css -u cssnano -d dist --ext .min.css --no-map",
"svgo": "svgo -r -f ./src/assets",
"test": "npm run lint:check",
"lint": "run-s lint:js lint:css lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint --fix .",
"lint:js:check": "eslint .",
"lint:css": "stylelint --fix '**/*.scss'",
"lint:css:check": "stylelint '**/*.scss'",
"lint:prettier": "prettier . --write",
"lint:prettier:check": "prettier . --check",
"prepublishOnly": "npm ci && npm test && npm run build"
},
"devDependencies": {
"@11ty/eleventy": "3.1.5",
"@11ty/eleventy-navigation": "1.0.5",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.2",
"@11ty/eleventy-plugin-webc": "0.11.2",
"cssnano": "7.1.7",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"globals": "17.5.0",
"npm-run-all2": "8.0.4",
"postcss": "8.5.12",
"postcss-cli": "11.0.1",
"postcss-inline-svg": "6.0.0",
"prettier": "3.8.3",
"sass": "1.99.0",
"stylelint": "16.26.1",
"stylelint-config-spaceninja": "15.0.0",
"svgo": "4.0.1"
}
}