forked from retejs/rete
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "rete",
"version": "1.5.0-rc1",
"description": "JavaScript framework",
"main": "build/rete.common.js",
"module": "build/rete.esm.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rete --build rete.config.js",
"build:watch": "watch 'npm run build' ./src",
"build:dev": "rete --build rete.config.js --watch",
"prepublishOnly": "npm run lint && npm run build",
"prebuild": "npm run lint && npm test && npm run types",
"postinstall": "node postinstall.js",
"lint": "tsc && eslint --ext .ts --ext .js src",
"test": "BABEL_ENV=test mocha -r ts-node/register test/**.ts",
"coverage": "nyc npm run test",
"types": "tsc src/index.ts --target es5 --declaration --skipLibCheck --outDir ./types --downlevelIteration --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retejs/rete.git"
},
"keywords": [
"dataflow",
"visual programming",
"node editor",
"js"
],
"author": "Vitaliy Stoliarov",
"license": "MIT",
"bugs": {
"url": "https://github.com/retejs/rete/issues"
},
"homepage": "https://github.com/retejs/rete#readme",
"devDependencies": {
"@babel/preset-typescript": "7.18.6",
"@types/jsdom": "12.2.2",
"@types/mocha": "5.2.6",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"rete-cli": "0.6.0-rc.5",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333",
"watch": "^1.0.2"
},
"dependencies": {
"eslint": "8.24.0",
"jsdom": "13.2.0",
"jsdom-global": "3.0.2",
"lodash": "^4.17.21",
"terminal-kit": "2.4.0",
"ts-node": "8.0.2"
}
}