-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mz-canvas",
"version": "1.0.15",
"description": "The TypeScript-based library for manipulating <canvas> element and 2D graphics in the browser.",
"type": "module",
"main": "./dist/mz-canvas.min.js",
"module": "./dist/mz-canvas.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"build:all": "npm run build:browser & npm run build:esm",
"watch:all": "npm run watch:browser & npm run watch:esm",
"build:browser": "node run/browser.js",
"watch:browser": "node run/browser.js -- watch",
"build:esm": "node run/esm.js",
"watch:esm": "node run/esm.js -- watch",
"test": "./node_modules/karma/bin/karma start ./karma.conf.cjs --single-run true",
"test:watch": "./node_modules/karma/bin/karma start ./karma.conf.cjs --auto-watch true",
"eslint": "eslint ./src/**",
"typescript-declarations": "tsc --emitDeclarationOnly",
"docs:website": "http-server ./docs",
"docs:build": "node ./src/docs/generator/index.js",
"docs:watch": "nodemon ./src/docs/generator/index.js"
},
"keywords": [
"canvas",
"canvas2d",
"canvas-api",
"canvas-element",
"canvasjs "
],
"author": "Miriam Zusin <miriam.zusin@gmail.com>",
"license": "SEE LICENSE IN LICENSE.md",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "https://github.com/mzusin/mz-canvast"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"watch": [
"src/"
],
"ext": "js,json,html,css,md,ts,tsx,glsl"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@open-wc/karma-esm": "^4.0.0",
"@types/jasmine": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"esbuild": "^0.17.17",
"eslint": "^8.39.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"markdown-documentation-maker": "^1.0.19",
"mz-math": "^3.0.8",
"mz-particles": "^1.0.6",
"mz-svg": "^1.0.10"
}
}