Skip to content

Commit 8c5921e

Browse files
committed
Copy files
1 parent 9a1add6 commit 8c5921e

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "blockly",
3+
"version": "1.0.0",
4+
"description": "Blockly is a library for building visual programming editors.",
5+
"keywords": ["blockly"],
6+
"scripts": {
7+
"lint": "jshint ."
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/google/blockly.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/google/blockly/issues"
15+
},
16+
"homepage": "https://developers.google.com/blockly/",
17+
"author": {
18+
"name": "Neil Fraser"
19+
},
20+
"license": "Apache-2.0",
21+
"private": true,
22+
"devDependencies": {
23+
"jshint": "latest"
24+
},
25+
"jshintConfig": {
26+
"globalstrict": true,
27+
"predef": ["Blockly", "goog", "window", "document", "soy", "XMLHttpRequest"],
28+
"sub": true,
29+
"undef": true,
30+
"unused": true
31+
}
32+
}

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mkdocs>=0.15.3
2+
pyinstaller>=3.2.1

0 commit comments

Comments
 (0)