forked from jagenjo/litegraph.js
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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": "@mr_pebble/litegraph",
"version": "0.10.2",
"description": "A flow graph node editor on the web.",
"main": "build/litegraph.js",
"type": "module",
"types": "src/litegraph.d.ts",
"private": false,
"scripts": {
"build": "python3 build.py",
"docs": "jsdoc -c ./docs/.jsdoc.config -d ./docs -r --verbose --debug",
"server": "nodemon server.js",
"test": "node --experimental-vm-modules node_modules/jest-cli/bin/jest.js",
"lint": "npx eslint src",
"lint:fix": "npx eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-lewis-ab/litegraph.js.git"
},
"author": "Daniel Lewis",
"license": "MIT",
"files": [
"build",
"css/litegraph.css",
"src/litegraph.d.ts"
],
"bugs": {
"url": "https://github.com/daniel-lewis-ab/litegraph.js/issues"
},
"homepage": "https://github.com/daniel-lewis-ab/litegraph.js#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.1.0",
"@types/jest": "^28.1.3",
"eslint": "^8.37.0 ",
"eslint-plugin-jest": "^27.2.1",
"express": "^4.17.1",
"jest-cli": "^28.1.3",
"jsdoc": "^4.0.3",
"jsdom": "^17.0.0",
"nodemon": "^3.1.0",
"uglify-js": "^3.0.0"
},
"keywords": [
"flow",
"graph",
"editor",
"web"
]
}