summaryrefslogtreecommitdiff
path: root/blockly/package.json
blob: cc24f2a905d7dc54f25eab8edc93f58bddf27e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "name": "blockly",
  "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": {
    "globalstrict": true,
    "predef": ["Blockly", "goog", "window", "document", "soy", "XMLHttpRequest"],
    "sub": true,
    "undef": true,
    "unused": true
  }
}