-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "electric-circuits",
"scripts": {
"postinstall": "npm run build-svelte",
"start": "source activate electric-circuits && node app.js",
"test": "node ./node_modules/mocha/bin/mocha --recursive test",
"build-svelte": "rollup -c",
"watch-svelte": "rollup -c -w",
"apply": "node ./node_modules/webgme-engine/src/bin/apply.js",
"diff": "node ./node_modules/webgme-engine/src/bin/diff.js",
"export": "node ./node_modules/webgme-engine/src/bin/export.js",
"import": "node ./node_modules/webgme-engine/src/bin/import.js",
"merge": "node ./node_modules/webgme-engine/src/bin/merge.js",
"plugin": "node ./node_modules/webgme-engine/src/bin/run_plugin.js",
"pluginHook": "node ./node_modules/webgme-engine/src/bin/plugin_hook.js",
"users": "node ./node_modules/webgme-engine/src/bin/usermanager.js",
"clean_up": "node ./node_modules/webgme-engine/src/bin/clean_up.js"
},
"version": "1.0.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"chai": "^4.2.0",
"eslint": "^7.21.0",
"mocha": "^5.2.0",
"rollup": "^2.38.5",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.32.1",
"webgme": "^2.42.0"
},
"dependencies": {
"dagre": "^0.8.5",
"elkjs": "^0.7.1",
"graphlib": "^2.1.8",
"jointjs": "^3.3.0",
"jszip": "^3.6.0",
"lodash-amd": "^4.17.15",
"webgme-bindings": "github:webgme/bindings",
"webgme-json-importer": "^1.2.0"
},
"description": "First, install the electric-circuits following: - [NodeJS](https://nodejs.org/en/) (v4.x.x recommended) - [MongoDB](https://www.mongodb.com/)",
"main": "app.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umesh-timalsina/electric-circuits.git"
},
"keywords": [
"electric",
"circuits",
"webgme",
"spice"
],
"contributors": [
{
"name": "Umesh Timalsina",
"email": "umesh.timalsina@vanderbilt.edu",
"url": "umesh-timalsina.github.io"
},
{
"name": "Brian Broll",
"email": "brian.broll@vanderbilt.edu"
},
{
"name": "Akos Ledeczi",
"email": "akos.ledeczi@vanderbilt.edu"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/umesh-timalsina/electric-circuits/issues"
},
"homepage": "https://github.com/umesh-timalsina/electric-circuits#readme"
}