-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "@openameba/spindle-syntax-themes",
"version": "1.1.1",
"description": "Spindle syntax themes",
"license": "MIT",
"files": [
"highlightjs-light.css",
"highlightjs-dark.css",
"highlightjs-light.min.css",
"highlightjs-dark.min.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openameba/spindle.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "yarn lint && yarn test:a11y",
"test:a11y": "acot run",
"lint": "stylelint *.css",
"minify": "csso highlightjs-light.css --output highlightjs-light.min.css && csso highlightjs-dark.css --output highlightjs-dark.min.css",
"prepublishOnly": "yarn minify",
"build:example": "npx rimraf public && npx cpx '*.{html,css,ico}' public",
"predeploy": "yarn build:example",
"deploy": "firebase deploy --only hosting",
"serve": "npx serve -p 5001"
},
"devDependencies": {
"@acot/acot-config": "^0.0.19",
"@acot/cli": "^0.0.19",
"csso-cli": "^4.0.0",
"firebase-tools": "^13.0.0",
"puppeteer": "^23.0.0",
"stylelint": "^15.0.0",
"stylelint-config-standard": "^34.0.0"
}
}