forked from theacodes/kicanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.02 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": "kicanvas",
"version": "0.0.0",
"description": "",
"type": "module",
"directories": {
"test": "tests"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/semantic-dom-diff": "^0.20.1",
"@types/mocha": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@web/dev-server-esbuild": "^1.0.0",
"@web/test-runner": "^0.18.0",
"esbuild": "^0.19.5",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mocha": "^10.2.0",
"prettier": "^3.0.3",
"svgstore": "^3.0.1",
"typescript": "^5.2.2",
"typescript-lit-html-plugin": "^0.9.0"
},
"scripts": {
"test:watch": "web-test-runner --config scripts/web-test-runner.config.mjs --watch",
"test:coverage": "web-test-runner --config scripts/web-test-runner.config.mjs --coverage",
"test": "web-test-runner --config scripts/web-test-runner.config.mjs",
"lint:eslint": "eslint --config .eslintrc.cjs src/ --ext .js,.ts",
"lint:types": "tsc -p tsconfig.json",
"lint:prettier": "prettier . --check",
"lint": "npm run lint:eslint && npm run lint:types && npm run lint:prettier",
"format": "prettier . --write",
"serve": "node scripts/serve.js",
"build:no-check": "node scripts/build.js",
"build:font": "node scripts/build-font.js",
"build:sprites": "node scripts/build-sprites.js",
"build": "tsc -p tsconfig.json && node scripts/build.js",
"clean": "rm -rf build && rm -rf debug/kicanvas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theacodes/kicanvas.js.git"
},
"author": "Alethea Katherine Flowers",
"license": "MIT",
"bugs": {
"url": "https://github.com/theacodes/kicanvas.js/issues"
},
"homepage": "https://github.com/theacodes/kicanvas.js#readme"
}