Files
blockly/package.json
Andrew n marshall 0ffd5dda18 Changing root script for tests under Node. (#1837)
* Changing root script for tests under Node.

Was: tests/jsunit/test_runner.js
Now: tests/test_runner.js

The webdriver & jsunit calls formerly in tests/jsunit/test_runner.js
are now in function runJsUnitTestsInBrowser, in
run_jsunit_tests_in_browser.js, called from tests/test_runner.js.

This makes room for additional tests under Node, such as headless and generator tests.
2018-05-02 12:19:49 -07:00

51 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": "eslint .",
"pretest": "tests/scripts/test_setup.sh",
"test": "node tests/test_runner.js"
},
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"jshint": "latest",
"eslint": "^4.16"
},
"jshintConfig": {
"globalstrict": true,
"predef": [
"Blockly",
"goog",
"window",
"document",
"soy",
"XMLHttpRequest"
],
"sub": true,
"undef": true,
"unused": true
},
"dependencies": {
"google-closure-library": "^20180204.0.0",
"install": "^0.8.8",
"npm": "^4.4.4",
"webdriverio": "^4.6.2"
}
}