forked from retejs/rete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "rete",
"version": "1.5.2",
"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: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.38.1",
"@typescript-eslint/parser": "5.38.1",
"babel-eslint": "10.1.0",
"eslint": "8.24.0",
"jsdom": "13.2.0",
"jsdom-global": "3.0.2",
"mocha": "5.2.0",
"nyc": "14.1.1",
"rete-cli": "0.6.1",
"terminal-kit": "2.4.0",
"ts-node": "8.0.2",
"typescript": "4.8.4"
}
}