-
-
Notifications
You must be signed in to change notification settings - Fork 427
/
package.json
114 lines (114 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "docute",
"version": "4.11.0",
"scripts": {
"build:umd": "poi --config build/poi.lib.config.js --prod",
"build:es": "vue-compile src --config build/vue-compile.config.js",
"build": "npm run build:umd && npm run build:es",
"test": "npm run lint && npm run test:unit",
"lint": "xo",
"website": "poi --serve --config build/poi.website.config.js",
"build:website": "poi --prod --config build/poi.website.config.js",
"now-build": "npm run build:website",
"prepublishOnly": "npm run build",
"commit": "git-cz",
"test:unit": "poi puppet src/**/*.test.js --test --plugin @poi/puppet --framework mocha"
},
"dependencies": {
"jump.js": "^1.0.2",
"loadjs": "^3.5.4",
"marked": "^0.7.0",
"medium-zoom": "^1.0.2",
"prismjs": "^1.15.0",
"throttle-debounce": "^2.1.0",
"vue": "^2.6.10",
"vue-content-loader": "^0.2.1",
"vue-router": "^3.0.1",
"vue-router-prefetch": "^1.1.1",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@poi/plugin-puppet": "^0.1.4",
"@semantic-release/git": "^7.0.5",
"babel-preset-minimal": "^0.1.1",
"babel-preset-power-assert": "^3.0.0",
"bili": "^4.8.1",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"docute-google-analytics": "^1.1.0",
"eslint-config-rem": "^3.0.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"fast-async": "^6.3.8",
"html-template-tag": "^2.0.0",
"husky": "^1.0.1",
"lint-staged": "^7.3.0",
"poi": "^12.4.8",
"postcss-import": "^12.0.0",
"postcss-preset-env": "^6.0.3",
"power-assert": "^1.6.1",
"rollup-plugin-vue": "^4.3.2",
"semantic-release": "^15.12.0",
"vue-compile": "^0.3.1",
"webpack-node-externals": "^1.7.2",
"xo": "^0.23.0"
},
"repository": {
"url": "egoist/docute",
"type": "git"
},
"main": "dist/docute.js",
"module": "lib/index.js",
"files": [
"dist",
"lib",
"!**/__test__/**"
],
"description": "Effortlessly documentation done right.",
"author": "egoist <0x142857@gmail.com>",
"license": "MIT",
"xo": {
"extends": [
"rem",
"plugin:vue/essential"
],
"prettier": true,
"ignores": [
"**/website/**",
"**/dist/**"
],
"envs": [
"browser",
"mocha"
],
"globals": [
"__DOCUTE_VERSION__"
],
"extensions": [
"vue"
],
"rules": {
"unicorn/filename-case": "off",
"unicorn/no-abusive-eslint-disable": "off",
"require-atomic-updates": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,vue}": [
"xo --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}