-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1011 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1011 Bytes
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": "mavo-test",
"version": "0.0.3",
"description": "Mavo unit tests",
"main": "mavo.js",
"scripts": {
"build:css": "npx postcss **/*.postcss ./*.postcss --base . --dir . --ext .css",
"build:js": "cat test.js mavo-specific.js > mavotest.js",
"build": "npm run build:css && npm run build:js",
"watch:css": "npx postcss **/*.postcss ./*.postcss --base . --dir . --ext .css --watch",
"watch:js": "onchange 'test.js' 'mavo-specific.js' -- npm run build:js",
"watch": "npm run watch:css & npm run watch:js",
"test": "open index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/LeaVerou/mavo-test.git"
},
"author": "Lea Verou",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeaVerou/mavo-test/issues"
},
"homepage": "https://mavo.io",
"devDependencies": {
"onchange": "^7.1.0",
"postcss": "^8.3.9",
"postcss-cli": "^9.0.1",
"postcss-custom-selectors": "^6.0.0",
"postcss-nesting": "^8.0.1"
}
}