-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 921 Bytes
/
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
{
"name": "@marklb/storybook-harness",
"version": "0.0.6",
"author": "Mark Berry (markberry867@gmail.com)",
"repository": {
"type": "git",
"url": "https://github.com/Marklb/storybook-harness"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "ng-packagr -p ./package.json"
},
"devDependencies": {
"tslib": "^2.3.1",
"typescript": "4.2.4",
"@angular/cdk": "^12.0.5",
"@storybook/instrumenter": "^6.4.0",
"@angular/core": "~12.0.5",
"@angular/compiler-cli": "~12.0.5",
"@angular/compiler": "~12.0.5",
"ng-packagr": "^12.0.5"
},
"peerDependencies": {
"@angular/cdk": ">=8.0.0",
"@storybook/instrumenter": ">=6.4.0"
},
"ngPackage": {
"lib": {
"entryFile": "./public_api.ts"
},
"deleteDestPath": true,
"dest": "./dist"
},
"publishConfig": {
"access": "public"
}
}