-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.09 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@har79/theme",
"version": "0.7.1",
"description": "TODO",
"license": "Apache-2.0",
"author": {
"name": "Harry Cameron",
"email": "[email protected]",
"url": "https://har79.com"
},
"repository": {
"type": "git",
"url": "https://github.com/har79/theme"
},
"files": [
"build"
],
"main": "_index.scss",
"style": "_index.scss",
"scripts": {
"clean": "rm -r coverage build oss-attribution *.tsbuildinfo ||:",
"fix:format": "prettier --write src",
"fix:lint": "stylelint 'src/**/*.scss'",
"fix": "npm run fix:format && npm run fix:lint",
"license:check": "license-checker --production --onlyAllow 'MIT;ISC;Apache-2.0' --excludePrivatePackages",
"license:attribution": "generate-attribution",
"license": "npm run license:check && npm run license:attribution",
"preversion": "npm run license:check && npm run fix && [ -z \"$(git status --porcelain)\" ]",
"postversion": "git push && git push --tags",
"prepare": "npm run clean && npm run license:check && npm run build",
"build:cp": "copy-and-watch \"src/**/_*.scss\" build",
"build:sass": "sass --load-path=node_modules --silence-deprecation=mixed-decls src/main.scss build/main.css",
"build": "npm-run-all build:*",
"start:cp": "npm run build:cp -- --watch",
"start:sass": "npm run build:sass -- --watch",
"start:example": "serve",
"start": "npm-run-all --parallel start:*"
},
"devDependencies": {
"@har79/config": "workspace:^",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"copy-and-watch": "^0.1.8",
"license-checker": "^25.0.1",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"oss-attribution-generator": "^1.7.1",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-sh": "^0.14.0",
"sass": "^1.83.0",
"serve": "^14.2.4",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}