forked from el/canvas-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 837 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 837 Bytes
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
{
"author": "Eliz Kilic",
"dependencies": {},
"description": "Fast table implementation in Canvas",
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^12.0.0",
"canvas": "^2.6.1",
"chai": "^4.2.0",
"md5": "^2.2.1",
"mocha": "^8.1.3",
"ts-node": "^7.0.1",
"typescript": "^3.6.0"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "canvas-table",
"peerDependencies": {
"canvas": "^2.6.1"
},
"repository": "github:el/canvas-table",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist; rm -f test/*.png",
"test": "node_modules/mocha/bin/_mocha --timeout 10000 --require ts-node/register/transpile-only test/*.spec.ts"
},
"version": "0.0.8"
}