forked from scratchfoundation/scratch-svg-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.45 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
{
"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"
},
"dependencies": {
"base64-js": "1.2.1",
"base64-loader": "1.0.0",
"minilog": "3.1.0",
"transformation-matrix": "1.14.1",
"scratch-render-fonts": "1.0.0-prerelease.20180906193204"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "7.1.5",
"babel-preset-env": "1.6.1",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.14.0",
"eslint-config-scratch": "^5.0.0",
"eslint-plugin-import": "^2.12.0",
"jsdom": "^13.0.0",
"json": "^9.0.6",
"lodash.defaultsdeep": "4.6.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1",
"tap": "^11.0.1",
"webpack": "^4.8.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4",
"xmldom": "^0.1.27"
}
}