-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.46 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.46 KB
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
{
"name": "@wormery/utils",
"version": "1.1.3",
"description": "一个工具库",
"publishConfig": {
"access": "public"
},
"keywords": [
"wormery",
"utils"
],
"license": "MIT",
"author": {
"email": "3197801970@qq.com",
"name": "meke",
"url": "http://github.com/mekeer"
},
"main": "lib/utils.common.js",
"module": "lib/utils.esm.js",
"unpkg": "lib/utils.umd.js",
"jsdelivr": "lib/utils.iife.js",
"typings": "src/index.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "pnpm build:all",
"build:all": "pnpm rollup -c",
"format": "prettier --write \"./**/*.{js,jsx,json,yaml}\"",
"release:minor-alpha": "pnpm standard-version --release-as minor --prerelease alpha",
"release": "pnpm standard-version",
"pub": "npm publish"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.2",
"@types/bluebird": "*",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"fs": "^0.0.1-security",
"prettier": "^2.5.1",
"rollup": "^2.63.0",
"rollup-plugin-typescript2": "^0.31.1",
"standard-version": "^9.3.2",
"ts-toolbelt": "^9.6.0",
"typescript": "~4.4.0"
}
}