-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "docz-plugin-stencil",
"version": "0.4.6",
"description": "Integrates Stencil auto generated markdown files into Docz with ease",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanielNetzer/docz-plugin-stencil.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"files": [
"dist/",
"package.json",
"CHANGELOG.MD",
"README.md"
],
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"fix": "run-s fix:*",
"test": "node tests.js",
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
"fix:tslint": "tslint --fix --project .",
"tslint": "tslint --project .",
"commit": "git-cz",
"release": "npm run build && standard-version && git push --follow-tags origin master"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"docz-core": "^1.0.4"
},
"devDependencies": {
"docz-core": "^1.0.4",
"@types/node": "^11.13.5",
"commitizen": "^3.1.0",
"cz-conventional-changelog": "2.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"rollup": "^1.10.1",
"rollup-plugin-typescript2": "^0.20.1",
"standard-version": "^5.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4"
}
}