forked from hustcc/jest-canvas-mock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "vi-canvas-mock",
"version": "1.0.0",
"description": "Mock a canvas in your vitest tests.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm run build",
"prettier": "prettier --write ."
},
"dependencies": {
"cssfontparser": "^1.2.1",
"moo-color": "^1.0.2"
},
"devDependencies": {
"@antv/g2plot": "^2.3.11",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"babel-plugin-version": "^0.2.3",
"coveralls": "^3.0.11",
"husky": "^4.2.5",
"prettier": "^2.0.4",
"vitest": "^0.29.2"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run prettier && npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/schirrel/vi-canvas-mock.git"
},
"keywords": [
"mock",
"vitest",
"vitest-mock",
"canvas",
"test",
"unit"
],
"files": [
"CHANGELOG.md",
"lib/",
"types/"
],
"author": "schirrel",
"license": "MIT",
"bugs": {
"url": "https://github.com/schirrel/vi-canvas-mock/issues"
},
"homepage": "https://github.com/schirrel/vi-canvas-mock#readme"
}