-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "mandoc-repository",
"scripts": {
"prepublishOnly": "echo \"Error: do 'publish.sh' instead of 'npm publish'\" && exit 1",
"commit": "git-cz",
"release": "lerna version --conventional-commits",
"alpha-release": "lerna version --conventional-commits prerelease --preid alpha",
"beta-release": "lerna version --conventional-commits prerelease --preid beta",
"test": "lerna run test",
"build": "lerna run build",
"mandoc": "node ./packages/mandoc/dist/package/bin/mandoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chigix/mandoc.git"
},
"engines": {
"node": ">= 10.10.0",
"npm": ">= 5.5.1"
},
"author": "Richard Lea <[email protected]>",
"homepage": "https://github.com/chigix/mandoc",
"bugs": {
"url": "https://github.com/chigix/mandoc/issues"
},
"private": true,
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^23.3.5",
"@types/jquery": "^3.3.5",
"@types/js-yaml": "^3.11.2",
"@types/klaw-sync": "^5.0.0",
"@types/less": "^3.0.0",
"@types/lodash": "^4.14.113",
"@types/mathjs": "^4.4.1",
"@types/node": "^10.10.3",
"@types/npmlog": "^4.1.1",
"@types/nunjucks": "^3.1.0",
"@types/puppeteer": "^1.9.0",
"@types/remarkable": "^1.7.1",
"@types/shelljs": "^0.8.0",
"@types/through2": "^2.0.33",
"@types/tmp": "0.0.33",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"gulp": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-typescript": "^5.0.0",
"jest": "^23.6.0",
"jest-config": "^23.4.2",
"jquery": "^3.3.1",
"klaw-sync": "^6.0.0",
"lerna": "^3.5.1",
"less": "^3.9.0",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"remarkable": "^1.7.1",
"shelljs": "^0.8.2",
"shx": "^0.3.2",
"slash": "^2.0.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tsconfig-paths": "^3.6.0",
"tslint": "^5.11.0",
"tslint-no-circular-imports": "^0.6.1",
"tslint-sonarts": "^1.8.0",
"typescript": "^3.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}