-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "under-the-wave",
"version": "1.3.9",
"bin": {
"under-the-wave": "./lib/bin.js",
"wave": "./lib/bin.js"
},
"files": [
"lib",
"plugins",
"public"
],
"author": "Alexey Litvinov",
"repository": {
"type": "git",
"url": "git+https://github.com/sullenor/under-the-wave.git"
},
"dependencies": {
"@babel/core": "7.14.6",
"chokidar": "3.5.2",
"css-tree": "1.1.3",
"csso": "4.2.0",
"highlight.js": "11.2.0",
"html-minifier": "4.0.0",
"js-yaml": "3.14.1",
"marked": "2.1.3",
"minimist": "1.2.5",
"pino": "6.12.0",
"pino-colada": "2.1.0",
"posthtml": "0.16.4",
"uglify-js": "3.13.10",
"yaml-front-matter": "4.1.1"
},
"devDependencies": {
"standard": "16.0.3",
"uvu": "0.5.1"
},
"standard": {
"ignore": [
"node_modules/**"
]
},
"scripts": {
"clean": "rm -rf ./tests/fixture/.cache ./tests/fixture/dist",
"build": "node ./lib/bin.js ./tests/fixture/index.html --work-dir ./tests/fixture --build",
"start": "node ./lib/bin.js --work-dir ./tests/fixture",
"serve": "cd ./tests/fixture/dist && python3 -m http.server 1234",
"test": "uvu tests -i fixture -i _utils",
"testw": "node scripts/test-w"
}
}