forked from leaysgur/simple-drawing-board.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
53
{
"name": "simple-drawing-board",
"version": "3.1.2",
"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",
"lint": "eslint ./src/**/*",
"dev": "rollup -c --watch",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/leader22/simple-drawing-board.js.git"
},
"keywords": [
"canvas",
"drawing",
"drawing-board",
"vanilla"
],
"author": "leader22",
"license": "MIT",
"bugs": {
"url": "https://github.com/leader22/simple-drawing-board.js/issues"
},
"homepage": "https://github.com/leader22/simple-drawing-board.js",
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jasmine": "^3.6.3",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.5",
"prettier": "^2.2.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"tsd": "^0.14.0"
},
"tsd": {
"compilerOptions": {
"lib": [
"dom",
"es2020"
]
}
}
}