forked from scratchfoundation/scratch-svg-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "scratch-svg-renderer",
"version": "0.2.0",
"description": "SVG renderer for Scratch",
"main": "./src/index.js",
"scripts": {
"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"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"homepage": "https://github.com/LLK/scratch-svg-renderer#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LLK/scratch-svg-renderer.git"
},
"peerDependencies": {
"scratch-render-fonts": "^1.0.0-prerelease"
},
"dependencies": {
"base64-js": "1.2.1",
"base64-loader": "1.0.0",
"dompurify": "2.2.7",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"minilog": "3.1.0",
"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": "7.31.0",
"eslint-config-scratch": "5.1.0",
"eslint-plugin-import": "2.23.4",
"jsdom": "13.2.0",
"json": "9.0.6",
"lodash.defaultsdeep": "4.6.1",
"mkdirp": "1.0.4",
"rimraf": "3.0.2",
"scratch-render-fonts": "1.0.0-prerelease.20210401210003",
"tap": "11.1.5",
"webpack": "4.46.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2",
"xmldom": "0.1.31"
}
}