-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.77 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
{
"name": "storybook-builder",
"version": "1.0.0-sematically-released",
"description": "A builder for running storybook the Angular way.",
"author": "Christoph Murczek <christoph.murczek@iteratec.com>",
"license": "MIT",
"keywords": ["storybook", "angular", "builder", "schematics"],
"repository": {
"url": "git@github.com:cmurczek/storybook-builder.git"
},
"builders": "./src/builders.json",
"schematics": "./schematics/collection.json",
"ng-add": {
"save": "devDependencies"
},
"scripts": {
"build": "tsc -p tsconfig.builders.json && tsc -p tsconfig.schematics.json",
"copy:builders": "cp src/builders.json dist/src",
"copy:schemas": "cp --parents schematics/*/schema.json dist/ && cp --parents src/*/schema.json dist/",
"copy:files": "cp --parents -pr schematics/*/files dist",
"copy:collection": "cp schematics/collection.json dist/schematics/collection.json",
"copy:packageFiles": "cp package.json README.MD LICENSE.md dist/",
"postbuild": "$npm_execpath run copy:builders && $npm_execpath run copy:schemas && $npm_execpath run copy:files && $npm_execpath run copy:collection && $npm_execpath run copy:packageFiles",
"release": "semantic-release",
"test": "jest"
},
"dependencies": {
"jsonc-parser": "^2.3.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1001.3",
"@angular-devkit/build-angular": "^0.1001.3",
"@angular-devkit/core": "^10.1.3",
"@angular-devkit/schematics": "^10.1.3",
"@angular/cli": "^10.1.3",
"@angular/compiler": "^10.1.3",
"@angular/compiler-cli": "^10.1.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@storybook/angular": "^6.0.21",
"@types/jest": "^26.0.13",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"semantic-release": "17.1.1",
"ts-jest": "^26.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"@angular-devkit/architect": ">=0.800.0",
"@angular-devkit/core": ">=8.0.0",
"@storbook/core": ">=6.0.0",
"@storybook/angular": ">=6.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}