2016-03-28 12:53:44 -04:00
|
|
|
{
|
2016-04-08 13:10:37 -04:00
|
|
|
"name": "scratch-vm",
|
2016-05-10 12:15:27 -04:00
|
|
|
"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
|
|
|
},
|
2016-09-20 15:52:35 -04:00
|
|
|
"main": "./dist.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",
|
|
|
|
"lint": "./node_modules/.bin/eslint .",
|
|
|
|
"prepublish": "npm run build",
|
|
|
|
"prepublish-watch": "npm run watch",
|
|
|
|
"start": "./node_modules/.bin/webpack-dev-server",
|
|
|
|
"tap-integration": "./node_modules/.bin/tap ./test/integration/*.js",
|
|
|
|
"tap-unit": "./node_modules/.bin/tap ./test/unit/*.js",
|
|
|
|
"test": "npm run lint && npm run tap-unit && npm run tap-integration",
|
|
|
|
"watch": "./node_modules/.bin/webpack --progress --colors --watch",
|
2016-09-27 09:20:55 -04:00
|
|
|
"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
|
|
|
},
|
2016-09-24 18:11:01 -04:00
|
|
|
"devDependencies": {
|
|
|
|
"copy-webpack-plugin": "3.0.1",
|
|
|
|
"eslint": "2.7.0",
|
2016-09-20 15:52:35 -04:00
|
|
|
"expose-loader": "0.7.1",
|
2016-09-24 18:14:52 -04:00
|
|
|
"gh-pages": "0.11.0",
|
2016-09-24 18:11:01 -04:00
|
|
|
"highlightjs": "8.7.0",
|
2016-04-26 09:49:52 -04:00
|
|
|
"htmlparser2": "3.9.0",
|
2016-09-27 09:20:55 -04:00
|
|
|
"json": "9.0.4",
|
2016-09-20 15:52:35 -04:00
|
|
|
"json-loader": "0.5.4",
|
2016-09-24 18:11:01 -04:00
|
|
|
"lodash.defaultsdeep": "4.6.0",
|
2016-09-20 15:52:35 -04:00
|
|
|
"promise": "7.1.1",
|
2016-09-27 10:23:12 -04:00
|
|
|
"scratch-blocks": "^0.1.0-prepublish",
|
|
|
|
"scratch-render": "^0.1.0-prepublish",
|
2016-09-24 18:11:01 -04:00
|
|
|
"script-loader": "0.7.0",
|
2016-08-11 22:54:57 -04:00
|
|
|
"stats.js": "0.16.0",
|
2016-04-18 17:20:30 -04:00
|
|
|
"tap": "5.7.1",
|
2016-09-24 18:14:52 -04:00
|
|
|
"travis-after-all": "1.4.4",
|
2016-09-24 18:11:01 -04:00
|
|
|
"webpack": "1.13.0",
|
2016-06-21 15:28:47 -04:00
|
|
|
"webpack-dev-server": "1.14.1"
|
2016-03-28 12:53:44 -04:00
|
|
|
}
|
|
|
|
}
|