-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "tiny-svg",
"version": "4.1.3",
"description": "A minimal toolbelt for builing fast SVG-based applications",
"type": "module",
"scripts": {
"all": "run-s lint test",
"pretest": "run-s bundle",
"bundle": "rollup -c --bundleConfigAsCjs",
"dev": "npm test -- --auto-watch --no-single-run",
"lint": "eslint .",
"prepare": "run-s bundle",
"test": "karma start karma.conf.cjs"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/tiny-svg"
},
"keywords": [
"svg",
"library",
"geometry"
],
"engines": {
"node": ">= 16"
},
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^8.57.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"karma": "^6.4.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.1",
"mocha": "^10.3.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^22.4.0",
"rollup": "^4.12.1",
"webpack": "^5.90.3"
},
"files": [
"dist"
]
}