This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.41 KB
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
{
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/orbiting/mdast.git"
},
"devDependencies": {
"commitizen": "^2.9.5",
"cz-lerna-changelog": "1.2.1",
"eslint": "^3.14.1",
"husky": "^0.13.1",
"lerna": "^2.5.1",
"lerna-semantic-release": "^9.1.0",
"validate-commit-msg": "^2.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
},
"validate-commit-msg": {
"helpMessage": "Commit message violates the rules defined for this project. Please, execute `npm run commit` to generate a correct commit message with `commitizen`"
}
},
"name": "@project-r/mdast",
"bugs": {
"url": "https://github.com/orbiting/mdast/issues"
},
"homepage": "https://github.com/orbiting/mdast#readme",
"version": "0.0.0-development",
"private": true,
"description": "Mdast utils developed at Project R",
"main": "index.js",
"dependencies": {},
"scripts": {
"commit": "git-cz",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform",
"postinstall": "lerna bootstrap",
"commitmsg": "validate-commit-msg",
"test": "lerna run test",
"lerna": "lerna",
"cloc": "find . -name '*.js' -not -path \"*/node_modules*\" -not -path \"*/lib*\" | xargs wc -l"
},
"author": "Thomas Preusse <t@preus.se> (https://t.preus.se/)"
}