-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
79 lines (79 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "scratch-svg-renderer",
"version": "2.5.38",
"description": "SVG renderer for Scratch",
"main": "./dist/node/scratch-svg-renderer.js",
"browser": "./dist/web/scratch-svg-renderer.js",
"exports": {
"webpack": "./src/index.js",
"browser": "./dist/web/scratch-svg-renderer.js",
"node": "./dist/node/scratch-svg-renderer.js",
"default": "./src/index.js"
},
"scripts": {
"build": "npm run clean && webpack",
"clean": "rimraf ./dist",
"prepare": "husky install",
"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 --watch"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"homepage": "https://github.com/scratchfoundation/scratch-svg-renderer#readme",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-svg-renderer.git"
},
"peerDependencies": {
"scratch-render-fonts": "^1.0.0"
},
"dependencies": {
"base64-js": "^1.2.1",
"base64-loader": "^1.0.0",
"css-tree": "^1.1.3",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"isomorphic-dompurify": "^2.4.0",
"minilog": "^3.1.0",
"transformation-matrix": "^1.15.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"babel-loader": "9.2.1",
"copy-webpack-plugin": "4.6.0",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"eslint-plugin-import": "2.31.0",
"husky": "8.0.3",
"jsdom": "13.2.0",
"json": "9.0.6",
"mkdirp": "2.1.6",
"rimraf": "3.0.2",
"scratch-render-fonts": "1.0.126",
"scratch-semantic-release-config": "1.0.16",
"scratch-webpack-configuration": "1.6.0",
"semantic-release": "19.0.5",
"tap": "11.1.5",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "3.11.3",
"xmldom": "0.1.31"
},
"browserslist": [
"Chrome >= 63",
"Edge >= 15",
"Firefox >= 57",
"Safari >= 11"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}