forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@blockly/dev-tools",
"version": "7.1.0",
"description": "A library of common utilities for Blockly extension development.",
"scripts": {
"audit:fix": "blockly-scripts auditFix",
"build": "blockly-scripts build",
"clean": "blockly-scripts clean",
"lint": "blockly-scripts lint",
"start": "blockly-scripts start"
},
"main": "dist/index.js",
"module": "./src/index.js",
"unpkg": "./dist/index.js",
"types": "./src/index.d.ts",
"author": "Blockly Team",
"keywords": [
"blockly",
"dev",
"tools"
],
"homepage": "https://github.com/google/blockly-samples/tree/master/plugins/dev-tools#readme",
"bugs": {
"url": "https://github.com/google/blockly-samples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/google/blockly-samples.git",
"directory": "plugins/dev-tools"
},
"license": "Apache-2.0",
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist",
"src"
],
"dependencies": {
"@blockly/block-test": "^5.0.0",
"@blockly/theme-dark": "^6.0.1",
"@blockly/theme-deuteranopia": "^5.0.1",
"@blockly/theme-highcontrast": "^5.0.1",
"@blockly/theme-tritanopia": "^5.0.1",
"chai": "^4.2.0",
"dat.gui": "^0.7.7",
"lodash.assign": "^4.2.0",
"lodash.merge": "^4.6.2",
"monaco-editor": "^0.20.0",
"sinon": "^9.0.2"
},
"devDependencies": {
"@blockly/dev-scripts": "^2.0.1",
"@types/dat.gui": "^0.7.5",
"blockly": "^10.0.0"
},
"peerDependencies": {
"blockly": "^10.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"eslintConfig": {
"extends": "@blockly/eslint-config"
},
"engines": {
"node": ">=8.0.0"
}
}