-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 KB
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
{
"name": "@devcapsule/deficon",
"version": "2.0.2",
"description": "SVG defs to icon component for web application",
"keywords": [
"icon",
"js",
"html",
"component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keenlycode/deficon.git"
},
"bugs": {
"url": "https://github.com/keenlycode/deficon/issues"
},
"homepage": "https://github.com/keenlycode/deficon#readme",
"scripts": {
"dist": "npx tsc --build --verbose && node esbuild/dist.mjs",
"docs-js": "node esbuild/docs.mjs",
"docs-html": "source venv/bin/activate && engrave dev docs-src docs --asset",
"docs": "npx concurrently -rk 'npm:docs-js' 'npm:docs-html'",
"test": "npx jest --coverage src/",
"test-watch": "npx jest --watch --coverage src/"
},
"author": "Nitipit Nontasuwan",
"license": "MIT",
"source": "src/deficon.ts",
"module": "dist/deficon.js",
"types": "dist/deficon.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"devDependencies": {
"@devcapsule/adapter": "^2.1.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"concurrently": "^8.2.2",
"esbuild": "^0.19.8",
"gadjet": "^1.0.4",
"glob": "^10.3.10",
"gnomicon": "^45.1.2",
"highlight.js": "^11.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"main": "''",
"directories": {
"doc": "docs"
}
}