-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.87 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
72
73
{
"name": "blockly-nominal-connection-checker",
"version": "0.0.0",
"description": "A Blockly plugin for creating more advanced connection checks, targeted at nominally typed languages.",
"scripts": {
"audit:fix": "blockly-scripts auditFix",
"build": "blockly-scripts build",
"clean": "blockly-scripts clean",
"dist": "blockly-scripts build prod",
"lint": "blockly-scripts lint",
"predeploy": "blockly-scripts predeploy",
"prepublishOnly": "npm run clean && npm run dist",
"start": "blockly-scripts start",
"test": "blockly-scripts test",
"mutations": "stryker run",
"antlr4ts": "antlr4ts -no-listener -visitor src/type-parser/Type.g4"
},
"main": "./dist/index.js",
"module": "./src/index.js",
"unpkg": "./dist/index.js",
"author": "",
"private": true,
"keywords": [
"blockly",
"blockly-plugin",
"nominal-conneciton-checker",
"connection-checker",
"type-checker"
],
"homepage": "[email protected]:BeksOmega/nominal-connection-checker/tree/main",
"bugs": {
"url": "[email protected]:BeksOmega/nominal-connection-checker/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:BeksOmega/nominal-connection-checker.git",
"directory": "test"
},
"license": "MIT",
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@blockly/dev-scripts": "^1.2.10",
"@blockly/dev-tools": "^2.6.1",
"@stryker-mutator/core": "^5.4.0",
"antlr4ts-cli": "^0.5.0-alpha.4",
"blockly": "^3.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"blockly": "3.0.0 - 7.0.0"
},
"publishConfig": {},
"engines": {
"node": ">=8.17.0"
},
"browserslist": [
"defaults",
"IE 11",
"IE_Mob 11"
],
"dependencies": {
"antlr4ts": "^0.5.0-alpha.4"
}
}