12345678910111213141516171819202122232425262728293031 |
- {
- "name": "blockly",
- "version": "1.0.0",
- "description": "Blockly is a library for building visual programming editors.",
- "main": "index.js",
- "repository": {
- "type": "git",
- "url": "https://github.com/google/blockly.git"
- },
- "bugs": {
- "url": "https://github.com/google/blockly/issues"
- },
- "homepage": "https://developers.google.com/blockly/",
- "author": {
- "name": "Neil Fraser"
- },
- "scripts": {
- "test": "tests/run_all_tests.sh",
- "build": "python build.py",
- "build-win": "python build-win.py"
- },
- "license": "Apache-2.0",
- "private": true,
- "devDependencies": {
- "google-closure-compiler": "^20180805.0.0",
- "google-closure-library": "^20180805.0.0"
- },
- "dependencies": {
- "jsdom": "^12.0.0"
- }
- }
|