-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.46 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
{
"name": "live-markd",
"version": "1.2.4",
"main": "index.js",
"description": "📝Github Favorite Markdown(gfm) preview with live rendering & location and highlight changed block.",
"author": "imcuttle <[email protected]>",
"bin": "./bin.js",
"scripts": {
"postpublish": "git push --tag origin $(git rev-parse --abbrev-ref HEAD)",
"test": "jest --forceExit",
"dev": "webpack-dev-server --config client/webpack.config.js --port 10000 --hot",
"build": "rimraf dist && NODE_ENV=production webpack -p --config client/webpack.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "npm run changelog",
"example": "node example",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"sideEffects": false,
"engines": {
"node": ">=6"
},
"keywords": [
"imcuttle",
"markdown",
"diff",
"github",
"gfm",
"preview",
"live",
"markd",
"live-markd"
],
"license": "MIT",
"repository": "imcuttle/live-markd",
"jest": {
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^23.3.7",
"autoprefixer": "^9.3.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"conventional-changelog-cli": "^2.0.5",
"css-loader": "^1.0.0",
"cssnano": "^4.1.7",
"friendly-errors-webpack-plugin": "^1.7.0",
"hot-module-require": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"postcss": "^7.0.5",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"supertest": "^3.3.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"chokidar": "^3.5.2",
"detect-one-changed": "^1.0.0",
"express": "^4.16.4",
"github-similar-server": "^1.2.0",
"minimist": "^1.2.0",
"pify": "^4.0.1"
}
}