-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "gif-parser-web",
"description": "在web前端项目内获取GIF图片时长、帧数等信息(可在任意一个基于JS开发的框架中运行)",
"version": "1.0.5",
"main": "dist/gifParserPlugin.common.js",
"types": "dist/type/main.d.ts",
"publisher": "magicalprogrammer@qq.com",
"private": false,
"scripts": {
"build": "vue-cli-service build --target lib --name gifParserPlugin src/main.ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likaia/gif-parser-web.git"
},
"keywords": [
"gif-parser",
"web-gif-parser",
"gif-parser-web",
"js-gif-parser",
"gif-parser-js",
"获取gif时长",
"解析gif",
"gif解析器",
"js解析gif"
],
"dependencies": {
},
"author": "likaia",
"license": "MIT",
"bugs": {
"url": "https://github.com/likaia/gif-parser-web/issues"
},
"homepage": "https://github.com/likaia/gif-parser-web#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-eslint": "~4.5.12",
"@vue/cli-plugin-typescript": "~4.5.12",
"@vue/cli-service": "~4.5.12",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.2.1",
"typescript": "~4.1.5",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "14.16.0",
"yarn": "1.22.17"
}
}