scratch-vm/package.json

27 lines
613 B
JSON
Raw Normal View History

2016-03-28 12:53:44 -04:00
{
2016-04-08 13:10:37 -04:00
"name": "scratch-vm",
2016-03-28 12:53:44 -04:00
"version": "1.0.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-04-18 17:20:30 -04:00
"main": "./src/index.js",
2016-03-28 12:53:44 -04:00
"scripts": {
2016-04-08 13:10:37 -04:00
"test": "make test"
},
"dependencies": {
"htmlparser2": "3.9.0",
"memoizee": "0.3.10"
},
2016-04-08 13:10:37 -04:00
"devDependencies": {
"eslint": "2.7.0",
"json-loader": "0.5.4",
2016-04-18 17:20:30 -04:00
"tap": "5.7.1",
"webpack": "1.13.0"
2016-03-28 12:53:44 -04:00
}
}