-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 1.12 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
{
"name": "mavue",
"version": "0.0.1",
"description": "",
"main": "./mavue.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "npx postcss \"**/*.postcss\" --base . --dir . --ext .css --config postcss.config.cjs",
"build:html": "npx @11ty/eleventy --config=.eleventy.cjs",
"build": "npm run build:html && npm run build:css",
"watch:css": "npx postcss \"**/*.postcss\" --base . --dir . --ext .css --config postcss.config.cjs --watch",
"watch:html": "npx @11ty/eleventy --config=.eleventy.cjs --watch",
"watch": "npm run watch:css & npm run watch:html",
"dev": "http-server -p 52732 --cors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mavoweb/mavue.git"
},
"keywords": [
],
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/mavoweb/mavue/issues"
},
"homepage": "https://github.com/mavoweb/mavue#readme",
"devDependencies": {
"markdown-it-anchor": "^8.6.6",
"markdown-it-attrs": "^4.1.6",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"postcss-nesting": "^8.0.1"
}
}