Files
blockly/package.json
Andrew n marshall 2e8c29de45 Adding gulpfile to build Node.js compatible library. (#1847)
The gulp file is derived from work in PR #887, with numerous
refinements and clarifying comments.

Also updating the version number in package.json, including the
'develop' prerelease tag for the develop branch.
2018-05-11 15:19:47 -07:00

58 lines
1.3 KiB
JSON

{
"name": "blockly",
"version": "1.20180420.0-develop",
"description": "Blockly is a library for building visual programming editors.",
"main": "blockly_node_javascript_en.js",
"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": {
"prepare": "gulp default",
"lint": "eslint .",
"pretest": "tests/scripts/test_setup.sh",
"test": "node tests/test_runner.js"
},
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"eslint": "^4.16",
"gulp-concat": "^2.6.1",
"gulp-insert": "^0.5.0",
"gulp-series": "^1.0.2",
"gulp-shell": "^0.6.5",
"jshint": "^2.9.5"
},
"jshintConfig": {
"globalstrict": true,
"predef": [
"Blockly",
"goog",
"window",
"document",
"soy",
"XMLHttpRequest"
],
"sub": true,
"undef": true,
"unused": true
},
"dependencies": {
"google-closure-library": "^20180204.0.0",
"gulp": "^3.9.1",
"install": "^0.8.8",
"npm": "^4.4.4",
"webdriverio": "^4.6.2"
}
}