-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 971 Bytes
/
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
{
"name": "binary-2d",
"version": "0.0.3",
"description": "Transform Canvas to Binary Matrix",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && codecov",
"test:result": "jest --coverage",
"size": "size-limit"
},
"keywords": [
"canvas",
"binary",
"typescript"
],
"author": "Nik Shevchenko <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shevchenkonik/binary-2d.git"
},
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^2.2.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"codecov": "^3.6.1",
"jest": "^24.9.0",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"size-limit": [
{
"path": "lib/index.js"
}
]
}