-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "lindsvg",
"version": "1.5.0",
"description": "Lindenmayer System [Scalable] Vector Graphics",
"main": "./dist/lindsvg.js",
"module": "./dist/lindsvg.esm.js",
"unpkg": "./dist/lindsvg.js",
"exports": {
".": {
"import": "./dist/lindsvg.esm.js",
"require": "./dist/lindsvg.cjs"
}
},
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint src/**/*.mjs",
"test": "node test/node-esm-test.mjs && echo \"Check *.svg files located in the test/svg directory\"",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amphiluke/lindsvg.git"
},
"keywords": [
"l-system",
"svg"
],
"author": "Amphiluke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Amphiluke/lindsvg/issues"
},
"homepage": "https://amphiluke.github.io/lindsvg/",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.1",
"rollup": "^4.22.4"
},
"engines": {
"node": ">=8.3.0"
}
}