-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
126 lines (126 loc) · 3.41 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "bili",
"version": "4.0.0",
"description": "A zero configuration library bundler.",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"babel.js"
],
"scripts": {
"test": "yarn test:unit",
"test:cov": "yarn test:unit --coverage",
"test:unit": "cd test/fixtures && yarn && cd ../../ && yarn jest",
"types": "tsc --build tsconfig.types.json",
"build": "rm -rf dist && node lib/cli",
"prepublishOnly": "yarn types && yarn build",
"docs": "typedoc --out docs/api --theme minimal --mode file",
"dev:docs": "nswatch",
"commit": "git-cz"
},
"repository": {
"url": "git@github.com:egoist/bili.git",
"type": "git"
},
"author": "egoist<0x142857@gmail.com>",
"license": "MIT",
"browserslist": [
"node 6"
],
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-replace": "^2.3.3",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"chalk": "^4.1.0",
"ora": "^4.0.4",
"rollup": "^2.16.1",
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^6.1.0",
"v8-compile-cache": "^2.1.1",
"cac": "^6.5.10",
"joycon": "^2.2.5"
},
"devDependencies": {
"@types/babel__core": "^7.1.8",
"@types/babel__generator": "^7.6.1",
"@types/babel__template": "^7.0.2",
"@types/babel__traverse": "^7.0.12",
"@types/elegant-spinner": "^2.0.1",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.155",
"@types/node": "^14.0.13",
"@types/pify": "^3.0.2",
"@types/require-from-string": "^1.2.0",
"@types/resolve": "^1.17.1",
"babel-plugin-alter-object-assign": "^1.0.2",
"boxen": "^4.2.0",
"builtin-modules": "^3.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"lodash": "^4.17.15",
"nswatch": "^0.2.0",
"p-waterfall": "^2.1.0",
"pify": "^5.0.0",
"prettier": "^2.0.5",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^7.0.0",
"require-from-string": "^2.0.2",
"require-so-slow": "^2.0.2",
"resolve": "^1.17.0",
"resolve-from": "^5.0.0",
"rollup-plugin-typescript2": "^0.27.1",
"semantic-release": "^17.0.8",
"semver": "^7.3.2",
"slash": "^3.0.0",
"string-width": "^4.2.0",
"stringify-author": "^0.1.3",
"text-table": "^0.2.0",
"tinydate": "^1.2.0",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md,vue}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=6"
},
"watch": {
"./src/**/*.ts": [
"docs"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}