-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 930 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 930 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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "glscope",
"version": "0.0.2",
"description": "WebGL Oscilloscope",
"main": "index.js",
"scripts": {
"start": "npx webpack --watch",
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markosankovic/glscope.git"
},
"keywords": [
"webgl",
"oscilloscope"
],
"author": "Marko Sanković <msankovic@synapticon.com> (https://github.com/markosankovic)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markosankovic/glscope/issues"
},
"homepage": "https://github.com/markosankovic/glscope#readme",
"devDependencies": {
"@types/dat.gui": "^0.7.5",
"@types/node": "^14.0.27",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"dat.gui": "^0.7.7",
"rxjs": "^6.6.2"
}
}