mirror of
https://github.com/google/blockly.git
synced 2026-01-08 01:20:12 +01:00
* Intentionally break Travis. * Alphabetize tests, remove orphaned test, and add fail to test that's running. * Unbreak test, disable OS X, move scripts, list compiler directory. * Test Java, break test. * Unbreak test, call compile script. * Compile main_compressed.js * Run test command using bash. * Fix path. * Exclude node modules. * Be more specific about JS files to compile. * Test failure. * Restore OSX, undo Blockly failure, remove compilation demo, add compilation test. * Delete manual test files. * Ignore downloaded/generated files. * Whitespace cleanup.
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"name": "blockly",
|
|
"version": "1.0.0",
|
|
"description": "Blockly is a library for building visual programming editors.",
|
|
"keywords": [
|
|
"blockly"
|
|
],
|
|
"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": {
|
|
"lint": "jshint .",
|
|
"pretest": "tests/scripts/test_setup.sh",
|
|
"test": "node tests/jsunit/test_runner.js"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"jshint": "latest"
|
|
},
|
|
"jshintConfig": {
|
|
"globalstrict": true,
|
|
"predef": [
|
|
"Blockly",
|
|
"goog",
|
|
"window",
|
|
"document",
|
|
"soy",
|
|
"XMLHttpRequest"
|
|
],
|
|
"sub": true,
|
|
"undef": true,
|
|
"unused": true
|
|
},
|
|
"dependencies": {
|
|
"install": "^0.8.8",
|
|
"npm": "^4.4.4",
|
|
"closure-library": "^1.43629075.2",
|
|
"webdriverio": "^4.6.2"
|
|
}
|
|
}
|