-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "trim-canvas",
"version": "0.1.2",
"description": "A tiny library for trimming whitespace from a canvas element",
"main": "build/index.js",
"files": [
"build/index.js"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/trim-canvas",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/trim-canvas.git"
},
"bugs": {
"url": "https://github.com/agilgur5/trim-canvas/issues"
},
"keywords": [
"canvas",
"trim",
"whitespace",
"remove",
"blanks",
"removeBlanks",
"remove-blanks"
],
"scripts": {
"lint": "standard index.js",
"build:watch": "webpack --watch -d",
"build:prod": "webpack -p",
"test": "jest",
"test:pub": "npm run build:prod && npm pack",
"pub": "npm run build:prod && npm publish",
"changelog": "changelog-maker"
},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"babel-core": "^6.0.14",
"babel-jest": "^23.6.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.6.0",
"canvas-prebuilt": "^1.6.11",
"jest": "^24.9.0",
"jest-without-globals": "^0.0.2",
"webpack": "^1.12.2"
}
}