-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.73 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
57
58
59
60
61
62
{
"name": "houl",
"version": "0.3.2",
"description": "Full-contained static site workflow",
"main": "lib/api.js",
"bin": "bin/houl.js",
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ktsn/houl.git"
},
"keywords": [
"build tool",
"static site",
"gulp"
],
"author": "katashin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktsn/houl/issues"
},
"homepage": "https://github.com/ktsn/houl#readme",
"scripts": {
"dev": "chokidar \"lib/**/*.js\" \"test/specs/**/*.js\" -c \"npm run test:unit\" --silent --initial",
"lint": "eslint bin lib test/specs test/e2e",
"lint:fix": "eslint --fix bin lib test/specs test/e2e",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"test:unit": "jasmine TEST=1 JASMINE_CONFIG_PATH=test/jasmine-unit.json",
"test:e2e": "node test/e2e/setup.js && jasmine TEST=1 JASMINE_CONFIG_PATH=test/jasmine-e2e.json",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"release": "./release.sh"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"conventional-github-releaser": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-ktsn": "^2.0.1",
"fs-extra": "^8.0.1",
"jasmine": "^3.4.0",
"normalize-path": "^3.0.0",
"prettier": "^1.18.0",
"prettier-config-ktsn": "^1.0.0",
"testdouble": "^3.11.0",
"vuepress": "^0.14.11"
},
"dependencies": {
"browser-sync": "^2.26.5",
"chokidar": "^3.0.1",
"hash-sum": "^1.0.2",
"http-proxy-middleware": "^0.19.1",
"mime": "^2.4.3",
"minimatch": "^3.0.4",
"progeny": "^0.12.0",
"readable-stream": "^3.4.0",
"vinyl-fs": "^3.0.3",
"yargs": "^13.2.4"
}
}