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
|
|
|
},
|
2017-01-13 16:34:26 -05:00
|
|
|
"main": "./dist/node/scratch-vm.js",
|
2017-11-27 22:15:05 -05:00
|
|
|
"browser": "./dist/web/scratch-vm.js",
|
2016-03-28 12:53:44 -04:00
|
|
|
"scripts": {
|
2017-09-22 05:41:08 -04:00
|
|
|
"build": "webpack --progress --colors --bail",
|
|
|
|
"coverage": "tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov",
|
|
|
|
"deploy": "touch playground/.nojekyll && gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"",
|
|
|
|
"lint": "eslint .",
|
2017-05-13 20:25:34 -04:00
|
|
|
"prepublish": "in-publish && npm run build || not-in-publish",
|
2017-09-22 05:41:08 -04:00
|
|
|
"start": "webpack-dev-server",
|
|
|
|
"tap": "tap ./test/{unit,integration}/*.js",
|
|
|
|
"tap:unit": "tap ./test/unit/*.js",
|
|
|
|
"tap:integration": "tap ./test/integration/*.js",
|
2016-10-24 12:04:22 -04:00
|
|
|
"test": "npm run lint && npm run tap",
|
2017-09-22 05:41:08 -04:00
|
|
|
"watch": "webpack --progress --colors --watch",
|
|
|
|
"version": "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": {
|
2016-12-23 21:08:13 -05:00
|
|
|
"adm-zip": "0.4.7",
|
2017-04-17 19:55:34 -04:00
|
|
|
"babel-core": "^6.24.1",
|
2017-02-20 17:13:40 -05:00
|
|
|
"babel-eslint": "^7.1.1",
|
2017-04-21 16:25:30 -04:00
|
|
|
"babel-loader": "^7.0.0",
|
2017-04-17 19:55:34 -04:00
|
|
|
"babel-preset-es2015": "^6.24.1",
|
2017-11-17 09:24:32 -05:00
|
|
|
"copy-webpack-plugin": "4.2.1",
|
2017-10-04 15:48:08 -04:00
|
|
|
"escape-html": "1.0.3",
|
2017-08-26 13:23:14 -04:00
|
|
|
"eslint": "^4.5.0",
|
2017-10-05 10:04:59 -04:00
|
|
|
"eslint-config-scratch": "^5.0.0",
|
2017-11-18 02:41:49 -05:00
|
|
|
"expose-loader": "0.7.4",
|
2017-11-17 16:59:41 -05:00
|
|
|
"gh-pages": "^1.1.0",
|
2017-02-20 17:13:40 -05:00
|
|
|
"highlightjs": "^9.8.0",
|
2017-02-01 10:19:46 -05:00
|
|
|
"htmlparser2": "3.9.2",
|
2017-05-19 12:42:37 -04:00
|
|
|
"immutable": "3.8.1",
|
2017-05-13 20:25:34 -04:00
|
|
|
"in-publish": "^2.0.0",
|
2017-02-20 17:13:40 -05:00
|
|
|
"json": "^9.0.4",
|
2016-09-24 18:11:01 -04:00
|
|
|
"lodash.defaultsdeep": "4.6.0",
|
2017-02-01 10:19:46 -05:00
|
|
|
"minilog": "3.1.0",
|
2017-11-20 17:04:17 -05:00
|
|
|
"nets": "3.2.0",
|
2017-07-12 16:38:41 -04:00
|
|
|
"promise": "8.0.1",
|
2017-06-01 12:31:24 -04:00
|
|
|
"scratch-audio": "latest",
|
|
|
|
"scratch-blocks": "latest",
|
|
|
|
"scratch-render": "latest",
|
2017-11-02 16:05:55 -04:00
|
|
|
"scratch-storage": "^0.3.0",
|
2017-09-29 15:14:25 -04:00
|
|
|
"script-loader": "0.7.2",
|
2017-10-22 09:19:34 -04:00
|
|
|
"socket.io-client": "2.0.4",
|
2017-02-20 17:13:40 -05:00
|
|
|
"stats.js": "^0.17.0",
|
|
|
|
"tap": "^10.2.0",
|
2017-07-16 02:51:59 -04:00
|
|
|
"tiny-worker": "^2.1.1",
|
2017-04-14 10:07:21 -04:00
|
|
|
"webpack": "^2.4.1",
|
2017-07-14 15:37:59 -04:00
|
|
|
"webpack-dev-server": "^2.4.1",
|
2017-10-23 22:08:45 -04:00
|
|
|
"worker-loader": "1.1.0"
|
2016-03-28 12:53:44 -04:00
|
|
|
}
|
|
|
|
}
|