-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "node-canvas-gui",
"version": "0.0.1",
"description": "Offering a set of UI elements to be used with the canvas",
"type": "module",
"keywords": [
"canvas",
"gui"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zaun/node-canvas-gui"
},
"main": "src/index.js",
"scripts": {
"example": "node example/widgets/index.js",
"exampleProfile": "node --prof example/widgets/index.js",
"quickstart": "node example/quickStart/index.js",
"lint": "eslint ./src/ ./example/",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config .jestrc.json",
"coverage": "npm test ; open ./coverage/index.html",
"doc": "jsdoc --configure .jsdoc.json"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"@khanacademy/simple-markdown": "^0.8.6",
"color-contrast-checker": "^2.1.0",
"shade-blend-color": "^1.0.0",
"synchronized-promise": "^0.3.1"
},
"devDependencies": {
"@jest/globals": "^29.2.1",
"@kmamal/sdl": "^0.6.x",
"clean-jsdoc-theme": "^4.2.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.1",
"jest-image-snapshot": "^6.1.0",
"jsdoc": "^4.0.0",
"node": "lts",
"pre-commit": "^1.2.2"
},
"peerDependencies": {
"canvas": "^2.10.1"
}
}