forked from google/blockly
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.24 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "blockly",
"version": "1.20180924.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 blockly_javascript_en",
"lint": "eslint .",
"test": "tests/run_all_tests.sh"
},
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"eslint": "^5.4.0",
"google-closure-compiler": "^20180805.0.0",
"google-closure-library": "^20180805.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-insert": "^0.5.0",
"gulp-series": "^1.0.2",
"gulp-shell": "^0.6.5",
"jshint": "^2.9.5",
"webdriverio": "^4.13.2"
},
"jshintConfig": {
"globalstrict": true,
"predef": [
"Blockly",
"goog",
"window",
"document",
"soy",
"XMLHttpRequest"
],
"sub": true,
"undef": true,
"unused": true
},
"dependencies": {
"jsdom": "^12.0.0"
}
}