forked from google/blockly-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "@blockly/dev-scripts",
"version": "4.0.6",
"description": "Configuration and scripts for Blockly plugins.",
"scripts": {
"lint": "eslint ."
},
"bin": {
"blockly-scripts": "./bin/blockly-scripts.js"
},
"author": "Blockly Team",
"keywords": [
"blockly",
"dev",
"scripts"
],
"homepage": "https://github.com/google/blockly-samples/tree/master/plugins/dev-scripts#readme",
"bugs": {
"url": "https://github.com/google/blockly-samples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/google/blockly-samples.git",
"directory": "plugins/dev-scripts"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/code-frame": "^7.8.3",
"@blockly/eslint-config": "^4.0.1",
"chalk": "^4.0.0",
"eslint": "^7.15.0",
"eslint-webpack-plugin": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"mocha": "^10.7.0",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.0",
"ts-loader": "^9.4.1",
"webpack": "^5.0.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"typescript": "^4.3.2 || ^5"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"typescript": "^5.4.5"
}
}