forked from jagenjo/litegraph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 786 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "litegraph",
"version": "v1.0.0-alpha",
"description": "A graph node editor similar to PD, it works in a HTML5 Canvas and allow to export graphs to be included in applications.",
"authors": "Rhody Lugo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rraallvv/litegraph"
},
"devDependencies": {
"eslint": "^2.11.1",
"jscs": "^3.0.4",
"Polymer": "^1.2.0",
"webcomponents.js": "^0.7.2"
},
"scripts": {
"start": "node utils/server 8080",
"build": "",
"test": "npm run jscs && npm run eslint",
"eslint": "node_modules/eslint/bin/eslint.js --format=utils/eslint_reporter.js src/*.js src/nodes/*.js demo/*.js",
"jscs": "node_modules/jscs/bin/jscs --reporter=utils/jscs_reporter.js src/*.js src/nodes/*.js demo/*.js"
}
}