This repository was archived by the owner on Apr 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@fine.sh/cli",
"version": "0.0.11",
"description": "generate your static website in 3 seconds",
"preferGlobal": true,
"main": "dist/bin/fine.js",
"author": "WittBulter (nanazuimeng123@gmail.com)",
"homepage": "https://github.com/just-fine/fine.sh-cli#readme",
"license": "MIT",
"scripts": {
"start": "cake start",
"build": "cake build",
"clean": "cake clear",
"deploy": "npm run build && npm publish --access=public",
"cover:local": "nyc mocha;open coverage/lcov-report/index.html",
"cover:hook": "nyc mocha;cat ./coverage/lcov.info | coveralls",
"test": "mocha"
},
"bin": {
"fine": "dist/bin/fine.js"
},
"repository": {
"type": "git",
"url": "https://github.com/just-fine/fine.sh-cli"
},
"files": [
"LICENSE",
"READNE.md",
"dist/",
"templates/"
],
"bugs": {
"url": "https://github.com/just-fine/fine.sh-cli/issues"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.1.2",
"chai": "^4.2.0",
"coffee": "^5.2.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.2",
"commitizen": "^3.0.5",
"commitlint": "^7.2.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"chalk": "^2.4.1",
"cli-table3": "^0.5.1",
"commander": "^2.19.0",
"highlight.js": "^9.13.1",
"inquirer": "^6.2.1",
"marked": "^0.6.0",
"node-emoji": "^1.8.1",
"opn": "^5.4.0",
"ora": "^3.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.3",
"update-notifier": "^2.5.0"
},
"nyc": {
"include": [
"src/scripts/**/*.coffee"
],
"extension": [
".coffee"
],
"require": [
"./node_modules/coffeescript/register"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"cache": true,
"report-dir": "./coverage"
}
}