-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
67
{
"name": "svgscript",
"version": "0.8.0",
"description": "Script SVG files",
"license": "UNLICENSED",
"homepage": "https://github.com/ad-si/svgscript",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ad-si/svgscript"
},
"main": "source/server.js",
"bin": {
"svgscript": "source/cli.js"
},
"scripts": {
"build": "rollup --config",
"lint": "eslint --max-warnings=0 --ignore-path=.gitignore .",
"unit-tests": "NODE_OPTIONS=--experimental-vm-modules npx jest --silent",
"test": "npm run lint && npm run unit-tests"
},
"keywords": [
"svg"
],
"author": "Adrian Sieber <mail@adriansieber.com>",
"eslintConfig": {
"extends": "eslint-config-javascript",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
}
},
"jest": {
"transform": {}
},
"dependencies": {
"browserify": "^17.0.0",
"browserify-middleware": "^8.1.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"clean-css": "^5.2.2",
"clone": "^2.1.2",
"cssobj-core": "^1.1.9",
"cssobj-plugin-gencss": "^2.0.7",
"deg2rad": "^1.0.0",
"eslint": "^8.5.0",
"eslint-config-javascript": "^2.0.0",
"express": "^4.17.2",
"js-beautify": "^1.14.0",
"js-yaml": "^4.1.0",
"rad2deg": "^1.0.0",
"rimraf": "^3.0.2",
"sanctuary": "^3.1.0",
"semver": "^7.3.5",
"shaven": "^2.1.0",
"socket.io": "^4.4.0",
"svgo": "2.8.0",
"svgpath": "^2.3.1",
"traverse": "^0.6.6"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.1",
"common-tags": "^1.8.2",
"jest": "^27.4.5",
"rollup": "^2.61.1"
}
}