-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 2.63 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
{
"name": "scratch-sb1-converter",
"version": "1.0.306",
"description": "Scratch 1 (.sb) to Scratch 2 (.sb2) conversion library for Scratch 3.0",
"author": "Scratch Foundation",
"license": "BSD-3-Clause",
"homepage": "https://github.com/scratchfoundation/scratch-sb1-converter#readme",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-sb1-converter.git"
},
"main": "playground/main.js",
"browser": "index.js",
"scripts": {
"build": "npm run docs && webpack --progress --colors --bail",
"commitmsg": "commitlint -e $GIT_PARAMS",
"deploy": "touch playground/.nojekyll && gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"",
"docs": "jsdoc -c .jsdoc.json",
"lint": "eslint .",
"prepare": "husky install",
"semantic-release": "semantic-release",
"start": "webpack-dev-server --output-library-target=umd2",
"test:ci:build": "babel --presets @babel/preset-env . --out-dir dist/test-tmp --only src,test,index.js --source-maps",
"test:ci:unit": "npm run test:ci:build && tap ./dist/test-tmp/test/unit",
"test:ci:integration": "npm run test:ci:build && tap ./dist/test-tmp/test/integration",
"test:ci": "npm run test:ci:build && tap ./dist/test-tmp/test",
"test:unit": "tap --node-arg=--require --node-arg=@babel/register ./test/unit",
"test:integration": "tap --node-arg=--require --node-arg=@babel/register ./test/integration",
"test:coverage": "tap --node-arg=--require --node-arg=@babel/register ./test/{unit,integration}/*.js --coverage --coverage-report=lcov",
"test": "npm run lint && npm run docs && npm run test:unit && npm run test:integration",
"watch": "webpack --progress --colors --watch"
},
"dependencies": {
"js-md5": "^0.7.3",
"minilog": "^3.1.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.4.1",
"docdash": "1.2.0",
"eslint": "8.57.1",
"eslint-config-scratch": "9.0.9",
"gh-pages": "1.2.0",
"html-webpack-plugin": "3.2.0",
"husky": "8.0.3",
"jsdoc": "3.6.11",
"json": "^9.0.4",
"scratch-semantic-release-config": "1.0.16",
"semantic-release": "19.0.5",
"tap": "12.7.0",
"webpack": "4.47.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}