mirror of
https://github.com/google/blockly.git
synced 2026-01-10 18:37:09 +01:00
To use this linter, make sure npm is installed and execute the following commands inside the main folder. 1.) Only once to update the package "npm install" 2.) To run the linter "npm run lint" This would make it easier to clean up some of the code.
33 lines
737 B
JSON
33 lines
737 B
JSON
{
|
|
"name": "blockly-src",
|
|
"version": "1.0.0",
|
|
"description": "Blockly is a library for building visual programming editors.",
|
|
"keywords": ["blockly"],
|
|
"scripts": {
|
|
"lint": "jshint ."
|
|
},
|
|
"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"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"jshint": "latest"
|
|
},
|
|
"jshintConfig": {
|
|
"unused": true,
|
|
"undef": true,
|
|
"globalstrict": true,
|
|
"sub": true,
|
|
"predef": ["Blockly", "goog", "window", "document", "soy", "XMLHttpRequest"]
|
|
}
|
|
}
|