-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "fabricjs-object-fit",
"version": "0.0.0-beta.5",
"description": "CSS-like 'object-fit' and 'object-position' behavior for FabricJS.",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"browser": "lib/index.umd.js",
"unpkg": "lib/index.umd.js",
"repository": "https://github.com/guesant/fabricjs-object-fit.git",
"homepage": "https://guesant.github.io/fabricjs-object-fit/",
"author": "Gabriel R. Antunes <gabrielrodantunes@gmail.com>",
"license": "LGPL-3.0",
"keywords": [
"fabricjs",
"object-fit",
"cover",
"contain",
"fill",
"object-position"
],
"scripts": {
"test": "jest",
"lint": "eslint 'src/**'",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:serve": "vuepress serve docs",
"dev": "rm -rf lib; rollup --config rollup.config.js --watch",
"build": "rm -rf lib; tsc --noEmit && rollup --config rollup.config.js",
"prepare": "husky install"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"**/*": [
"npm run lint:fix",
"prettier --write --ignore-unknown"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.2",
"@rollup/plugin-typescript": "^8.3.0",
"@types/fabric": "^4.5.6",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"fabric": "^4.6.0-browser",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.5",
"prettier": "2.5.1",
"prettier-config-standard": "^4.0.0",
"rollup": "^2.62.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.5.4",
"vuepress": "^1.9.5",
"vuepress-plugin-typedoc": "^0.10.0"
},
"optionalDependencies": {
"@types/fabric": "^4.5.6"
}
}