forked from retejs/rete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 KB
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
{
"name": "rete",
"version": "1.0.0",
"description": "JavaScript framework",
"main": "build/rete.min.js",
"module": "build/rete.debug.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint src --fix",
"build": "rete --build rete.config.js",
"build:dev": "rete --build rete.config.js --watch",
"prepublishOnly": "npm run lint && npm run build",
"test": "BABEL_ENV=test mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retejs/rete.git"
},
"keywords": [
"dataflow",
"visual programming",
"node editor",
"js"
],
"author": "Ni55aN",
"license": "MIT",
"bugs": {
"url": "https://github.com/retejs/rete/issues"
},
"homepage": "https://github.com/retejs/rete#readme",
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-register": "^6.26.0",
"eslint": "^4.19.1",
"jsdom": "^11.11.0",
"mocha": "^5.2.0",
"rete-cli": "^0.2.0",
"rollup-copy-plugin": "0.0.1"
},
"babel": {
"presets": [
"env"
]
}
}