-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.47 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
{
"name": "EDDIE",
"scripts": {
"initialize": "npm install && mkdir -p target/ && cd src/main/webapp/ && rm cassie eddie resources && ln -s ../../frontend/cassie && ln -s ../../frontend/eddie && ln -s ../../frontend/resources && cd ../../..",
"build": "tsc && browserify src/main.js -o target/lib.js && rsync -az src/static/html target/ && rsync -az src/resources target/ && rsync -az src/static/frontend target/",
"deploy": "npm run-script build && rsync -az new/target goto:~/ed-vis-gen/src/main/webapp/",
"watch": "watchify src/main.js -o target/lib.js --debug --verbose",
"test": "echo \"no tests yet\"",
"refresh-typings": "typings install --SG file:src/typings/cassowary.d.ts",
"clean": "rm -rf new && rm -rf src/main/webapp/target"
},
"description": "User-Guided Synthesis of Interactive Diagrams =============",
"version": "1.0.0",
"main": "main.js",
"directories": {
"doc": "docs",
"test": "test",
"src": "src"
},
"dependencies": {
"assert": "^1.4.1",
"browserify": "^13.0.1",
"cassowary": "^0.1.0",
"fabric": "^1.6.2",
"jison": "^0.4.17",
"requirejs": "^2.1.22",
"typescript-require": "^0.2.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UCSD-PL/ed-vis-gen.git"
},
"keywords": [],
"author": "John Sarracino",
"license": "ISC",
"bugs": {
"url": "https://github.com/UCSD-PL/ed-vis-gen/issues"
},
"homepage": "https://github.com/UCSD-PL/ed-vis-gen#readme"
}