scratch-vm/package.json

51 lines
1.8 KiB
JSON
Raw Normal View History

2016-03-28 12:53:44 -04:00
{
2016-04-08 13:10:37 -04:00
"name": "scratch-vm",
"version": "0.1.0",
2016-04-18 17:20:30 -04:00
"description": "Virtual Machine for Scratch 3.0",
2016-03-28 12:53:44 -04:00
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
2016-04-08 13:10:37 -04:00
"homepage": "https://github.com/LLK/scratch-vm#readme",
2016-03-28 12:53:44 -04:00
"repository": {
"type": "git",
2016-04-08 13:10:37 -04:00
"url": "git+ssh://git@github.com/LLK/scratch-vm.git"
2016-03-28 12:53:44 -04:00
},
"main": "./dist/node/scratch-vm.js",
2016-03-28 12:53:44 -04:00
"scripts": {
2016-10-17 09:35:59 -04:00
"build": "./node_modules/.bin/webpack --progress --colors --bail",
"coverage": "./node_modules/.bin/tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov",
"deploy": "touch playground/.nojekyll && ./node_modules/.bin/gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"",
2016-10-17 09:35:59 -04:00
"lint": "./node_modules/.bin/eslint .",
"prepublish": "npm run build",
"prepublish-watch": "npm run watch",
"start": "./node_modules/.bin/webpack-dev-server",
"tap": "./node_modules/.bin/tap ./test/{unit,integration}/*.js",
"test": "npm run lint && npm run tap",
2016-10-17 09:35:59 -04:00
"watch": "./node_modules/.bin/webpack --progress --colors --watch",
"version": "./node_modules/.bin/json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\""
2016-04-08 13:10:37 -04:00
},
"devDependencies": {
2016-12-23 21:08:13 -05:00
"adm-zip": "0.4.7",
"babel-eslint": "7.1.1",
"copy-webpack-plugin": "4.0.1",
"eslint": "3.14.1",
"eslint-config-scratch": "^3.1.0",
"expose-loader": "0.7.1",
"gh-pages": "0.12.0",
"highlightjs": "9.8.0",
"htmlparser2": "3.9.2",
"json": "9.0.4",
"lodash.defaultsdeep": "4.6.0",
"minilog": "3.1.0",
"promise": "7.1.1",
2017-01-06 15:18:30 -05:00
"scratch-audio": "latest",
"scratch-blocks": "latest",
"scratch-render": "latest",
"script-loader": "0.7.0",
"stats.js": "0.17.0",
"tap": "10.0.1",
2016-09-24 18:14:52 -04:00
"travis-after-all": "1.4.4",
"webpack": "2.2.1",
"webpack-dev-server": "1.16.3"
2016-03-28 12:53:44 -04:00
}
}