-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 907 Bytes
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 907 Bytes
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
{
"name": "rabbit-ear-svg",
"version": "0.2.3",
"description": "creative coding with SVG",
"main": "svg.js",
"type": "module",
"sourceType": "module",
"types": "./types/index.d.ts",
"scripts": {
"test": "vitest",
"clean": "node tests/clean.js",
"lineno": "node tests/lineno.js"
},
"author": "Robby Kraft",
"license": "MIT",
"repository": "https://github.com/robbykraft/SVG",
"keywords": [
"svg",
"art",
"vector",
"graphics",
"creative",
"code",
"illustrator",
"animation",
"script",
"library"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@xmldom/xmldom": "^0.8.10",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.4",
"vitest": "^0.34.6"
},
"jest": {
"collectCoverage": true
}
}