-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "rete-drag-selection-plugin",
"version": "0.1.3",
"description": "select more nodes at once",
"main": "build/rete-drag-selection-plugin.common.js",
"module": "build/rete-drag-selection-plugin.esm.js",
"scripts": {
"build": "rete --build rete.config.js",
"build:dev": "rete --build rete.config.js --watch",
"prepublishOnly": "npm run build",
"prebuild": "npm run lint && npm run types",
"lint": "tsc",
"types": "tsc src/index.ts --target es5 --declaration --outDir ./types --downlevelIteration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/damiano-sca/rete-selection-plugin.git"
},
"author": "damiano_sca",
"license": "GPL-3.0-or-later",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"rete": "^1.4.4",
"rete-cli": "0.6.0",
"typescript": "^3.9.7"
},
"files": [
"build/*",
"src/*"
],
"bugs": {
"url": "https://github.com/damiano-sca/rete-selection-plugin/issues"
},
"homepage": "https://github.com/damiano-sca/rete-selection-plugin#readme",
"keywords": [
"retejs",
"retejs-plugin",
"retejs-selection",
"multiselect"
]
}