mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-11-24 08:38:09 -05:00
68 lines
2.6 KiB
JSON
68 lines
2.6 KiB
JSON
{
|
|
"name": "scratch-sb1-converter",
|
|
"version": "0.0.0",
|
|
"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.2.0",
|
|
"@babel/core": "^7.1.2",
|
|
"@babel/eslint-parser": "7.23.3",
|
|
"@babel/preset-env": "^7.1.0",
|
|
"@babel/register": "^7.0.0",
|
|
"@commitlint/cli": "18.5.0",
|
|
"@commitlint/config-conventional": "18.5.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-loader": "^8.0.4",
|
|
"docdash": "^1.0.0",
|
|
"eslint": "^8.0.0",
|
|
"eslint-config-scratch": "^9.0.0",
|
|
"gh-pages": "^1.2.0",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"husky": "8.0.3",
|
|
"jsdoc": "^3.6.2",
|
|
"json": "^9.0.4",
|
|
"scratch-semantic-release-config": "1.0.8",
|
|
"semantic-release": "19.0.5",
|
|
"tap": "^12.0.1",
|
|
"webpack": "^4.16.5",
|
|
"webpack-cli": "^3.1.0",
|
|
"webpack-dev-server": "^3.1.5"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|