-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "simple-drawing-board",
"version": "3.1.3",
"description": "Just simple minimal canvas drawing lib.",
"main": "./dist/simple-drawing-board.js",
"types": "./index.d.ts",
"scripts": {
"test": "karma start && tsd",
"test:watch": "karma start --no-single-run --auto-watch --no-browsers",
"format": "npx prettier@latest ./src -w",
"dev": "rollup -c --watch",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/leaysgur/simple-drawing-board.js.git"
},
"keywords": [
"canvas",
"drawing",
"drawing-board",
"vanilla"
],
"author": "leaysgur",
"license": "MIT",
"bugs": {
"url": "https://github.com/leaysgur/simple-drawing-board.js/issues"
},
"homepage": "https://github.com/leaysgur/simple-drawing-board.js",
"devDependencies": {
"jasmine": "^5.3.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.8",
"rollup": "^4.21.2",
"rollup-plugin-terser": "^7.0.2",
"tsd": "^0.31.2"
},
"tsd": {
"compilerOptions": {
"lib": [
"dom",
"es2020"
]
}
}
}