forked from scratchfoundation/scratch-svg-renderer
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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": "@turbowarp/scratch-svg-renderer",
"version": "1.0.0",
"description": "SVG renderer for Scratch",
"main": "./src/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && webpack --progress --colors --bail",
"clean": "rimraf ./dist",
"start": "webpack-dev-server",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint . --ext .js",
"test:unit": "tap ./test/*.js",
"watch": "webpack --progress --colors --watch"
},
"license": "MPL-2.0",
"homepage": "https://github.com/TurboWarp/scratch-svg-renderer#readme",
"repository": {
"type": "git",
"url": "https://github.com/TurboWarp/scratch-svg-renderer.git"
},
"peerDependencies": {
"scratch-render-fonts": "github:TurboWarp/scratch-render-fonts#master"
},
"dependencies": {
"@turbowarp/nanolog": "^0.2.0",
"base64-js": "1.2.1",
"base64-loader": "1.0.0",
"css-tree": "1.1.3",
"dompurify": "^2.5.6",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"transformation-matrix": "1.15.0"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "7.1.5",
"babel-preset-env": "1.6.1",
"copy-webpack-plugin": "4.6.0",
"eslint": "8.55.0",
"eslint-config-scratch": "9.0.3",
"eslint-plugin-import": "2.29.0",
"jsdom": "13.2.0",
"json": "9.0.6",
"lodash.defaultsdeep": "4.6.1",
"mkdirp": "2.0.0",
"rimraf": "3.0.2",
"scratch-render-fonts": "github:TurboWarp/scratch-render-fonts#master",
"tap": "11.1.5",
"webpack": "4.47.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2",
"xmldom": "0.1.31"
},
"overrides": {
"[email protected]": {
"terser-webpack-plugin": "^4.2.3"
}
}
}