forked from geongeorge/Canvas-Txt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "canvas-txt",
"version": "3.0.0",
"description": "Render multiline textboxes in HTML5 canvas with auto line breaks and better alignment system",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --content-base public",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/geongeorge/Canvas-Txt"
},
"author": "Geon George <[email protected]> (https://geongeorge.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/geongeorge/Canvas-Txt/issues"
},
"homepage": "https://canvas-txt.geongeorge.com",
"keywords": [
"vue",
"react",
"library",
"canvas",
"Multiline",
"es6"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.0",
"css-loader": "^3.0.0",
"file-loader": "^4.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"prettier-webpack-plugin": "^1.2.0",
"style-loader": "^0.23.1",
"url-loader": "^2.0.0",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
}
}