forked from retejs/rete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "rete",
"version": "1.4.3-rc.1",
"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",
"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 --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.3.3",
"@types/jsdom": "^12.2.2",
"@types/mocha": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.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"
}
}