-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
105 lines (105 loc) · 2.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "storybook-addon-sketch",
"version": "0.2.1",
"description": "Get the sketch files for your stories in Storybook",
"main": "dist/index.js",
"source": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/intuit/storybook-addon-sketch"
},
"files": [
"dist",
"entry.js",
"preset.js",
"register.js",
"register-options.js"
],
"browserslist": "> 0.25%, not dead",
"author": {
"name": "Andrew Lisowski",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:watch": "npm run build:js -- --watch --verbose",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\"",
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"release": "auto shipit"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addons": "^5.2.0",
"@storybook/components": "^5.2.0",
"@types/file-saver": "^2.0.0",
"@types/node": "^12.7.5",
"@types/react": "^16.8.14",
"auto": "^7.6.0",
"husky": "^2.0.0",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"typescript": "^3.4.5"
},
"peerDependencies": {
"@storybook/addons": ">= 5.x",
"@storybook/components": ">= 5.x",
"react": "*"
},
"dependencies": {
"@types/url-join": "^4.0.0",
"file-saver": "^2.0.1",
"url-join": "^4.0.0"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"license": "MIT",
"auto": {
"plugins": [
"npm",
"released"
],
"labels": {
"dependency-update": {
"name": "dependency-update",
"title": "Dependency Updates"
}
},
"skipReleaseLabels": [
"dependency-update"
]
}
}