-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.13 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
{
"name": "promisify-file",
"version": "5.0.0",
"description": "Promise File Read.",
"keywords": [
"file",
"fileReader",
"promise"
],
"homepage": "https://github.com/fisker/promisify-file#readme",
"bugs": {
"url": "https://github.com/fisker/promisify-file/issues"
},
"repository": "fisker/promisify-file",
"funding": "https://github.com/fisker/promisify-file?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"main": "lib/index.js",
"jsdelivr": "lib/index.min.js",
"unpkg": "lib/index.min.js",
"module": "lib/index.min.mjs",
"browser": "lib/index.min.js",
"files": [
"lib/index.js"
],
"scripts": {
"build": "run-p build:*",
"build:js": "rollup --config",
"clean": "run-p clean:*",
"clean:dist": "del-cli dist",
"dev": "rollup --config --watch",
"dist": "run-p dist:*",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p format:*",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{js,mjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"release": "run-s lint clean build format dist",
"test": "jest",
"test-coverage": "jest --coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.2.0",
"@fisker/commitlint-config": "2.0.5",
"@fisker/eslint-config": "10.2.4",
"@fisker/eslint-config-jest": "3.0.12",
"@fisker/husky-config": "4.1.2",
"@fisker/lint-staged-config": "3.1.5",
"@fisker/prettier-config": "5.0.6",
"@rollup/plugin-node-resolve": "15.0.1",
"babel-jest": "29.3.1",
"babel-plugin-transform-async-to-promises": "0.8.18",
"babel-polyfill": "6.26.0",
"babel-preset-minify": "0.5.2",
"canvas": "2.10.2",
"core-js": "3.26.1",
"cz-conventional-changelog": "3.3.0",
"del-cli": "5.0.0",
"eslint": "8.27.0",
"eslint-formatter-friendly": "7.0.0",
"husky": "8.0.3",
"jest": "29.3.1",
"lint-staged": "13.0.3",
"markdownlint-cli": "0.32.2",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.5",
"prettier": "2.7.1",
"promisify-file-reader": "4.1.0",
"regenerator-runtime": "0.13.10",
"rollup": "3.3.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-prettier": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"sort-package-json": "2.1.0",
"uglify-js": "3.17.4",
"whatwg-fetch": "3.6.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}