-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "fss",
"version": "1.0.0",
"description": "Finate State Simulator",
"main": "canvas.js",
"directories": {
"test": "tests"
},
"dependencies": {
"@types/gapi": "0.0.39",
"@types/gapi.auth2": "0.0.51",
"@types/hammerjs": "^2.0.36",
"@types/jquery": "^3.3.31",
"@types/jspdf": "^1.3.3",
"hammerjs": "^2.0.8",
"jest": "^24.9.0",
"jquery": "^3.4.1",
"jspdf": "^1.5.3"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"copyfiles": "^2.1.1",
"css-loader": "^3.2.0",
"file-loader": "^4.3.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "webpack --config webpack.js --mode=development",
"build:go": "run-s copy && cd site/go && go build -o ./../../build/server",
"build:css": "webpack --config webpack.scss.js --mode=development",
"copy": "copyfiles -u 3 \"lib/OpenCircuits/site/data/**/*\" \"lib/OpenCircuits/site/templates/**/*\" build/ && copyfiles -u 2 \"site/public/examples/**/*\" \"site/public/img/**/*\" build/ && copyfiles -u 1 \"site/templates/**/*\" build/",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shailpatels/FSS.git"
},
"author": "Shail Patel",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/shailpatels/FSS/issues"
},
"homepage": "https://github.com/shailpatels/FSS#readme"
}