-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "luminance_study",
"version": "1.0.0",
"description": "In-browser augmented reality",
"main": "index.js",
"scripts": {
"test": "karma start ./karma.conf.js --single-run",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "webpack --progress --mode=development",
"start": "webpack serve --progress --mode=development --static=dist"
},
"author": "Stephen Thompson",
"license": "BSD-3-Clause",
"dependencies": {
"@kitware/vtk.js": "^20.4.1"
},
"devDependencies": {
"coveralls": "^3.1.1",
"esm": "^3.2.25",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.0.0",
"karma-typescript-preprocessor": "^0.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SciKit-Surgery/luminance_study.git"
},
"keywords": [
"depth-perception",
"vtk"
],
"bugs": {
"url": "https://github.com/SciKit-Surgery/luminance_study/issues"
},
"homepage": "https://github.com/SciKit-Surgery/luminance_study#readme"
}