-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "@snackbar/core",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"description": "Show a brief message at the bottom of the screen.",
"main": "dist/snackbar.js",
"module": "dist/snackbar.es.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.d.ts",
"dist/snackbar.es.js",
"dist/snackbar.js",
"dist/snackbar.min.js",
"dist/snackbar.css",
"dist/snackbar.min.css"
],
"scripts": {
"test": "echo lol",
"demo": "poi -so --config demo/poi.config.js",
"build:demo": "yarn docs && poi --prod --config demo/poi.config.js",
"build": "bili",
"docs": "typedoc src/index.ts --mode file --out demo/public/docs --readme none --theme minimal --excludeNotExported",
"prepublishOnly": "yarn build"
},
"repository": {
"url": "egoist/snackbar",
"type": "git"
},
"author": "egoist<[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@poi/plugin-typescript": "^12.2.1",
"bili": "^4.7.3",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"poi": "^12.6.8",
"postcss-preset-env": "^6.6.0",
"prettier": "^2.0.5",
"prismjs": "^1.16.0",
"rollup-plugin-typescript2": "^0.27.0",
"typedoc": "^0.17.6",
"typescript": "^3.4.5",
"vmark": "^1.1.0",
"vmark-loader": "^1.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
}
}