-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 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
{
"name": "lesion-mapper",
"version": "0.1.7",
"description": "Skin Lesion Mapper for Dermatology",
"author": "Bell Eapen <github_public@nuchange.ca>",
"repository": {
"type": "git",
"url": "git+https://github.com/dermatologist/lesion-mapper.git"
},
"keywords": [
"dermatology",
"lesion-mapper",
"machine-learning"
],
"bugs": {
"url": "https://github.com/dermatologist/lesion-mapper.git/issues"
},
"homepage": "https://github.com/dermatologist/lesion-mapper",
"main": "dist/lesion-mapper.ssr.js",
"files": [
"dist/*"
],
"scripts": {
"serve": "vue serve --port 8085 ./src/lesion-mapper.vue",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"test": "npm link webpack && mochapack --webpack-config webpack.config.js --require test/setup.js test/**/*.spec.js",
"preversion": "npm test",
"version": "npm run build",
"postversion": "rm -rf build/temp",
"release": "npm version patch && npm publish",
"gpr-setup": "node scripts/gpr.js"
},
"dependencies": {
"canvas": "^2.6.1",
"np": "^5.2.1",
"vuejs-fabric": "0.2.7"
},
"devDependencies": {
"@rollup/plugin-alias": "^2.2.0",
"@rollup/plugin-buble": "^0.20.0",
"@rollup/plugin-replace": "^2.2.1",
"@vue/test-utils": "^1.0.0-beta.30",
"cross-env": "^6.0.3",
"css-loader": "^3.4.0",
"expect": "^24.9.0",
"jsdom": "^15.2.1",
"jsdom-global": "^3.0.2",
"minimist": "^1.2.5",
"mocha": "^9.0.0",
"mochapack": "^2.1.2",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-vue": "5.1.1",
"url-loader": "^3.0.0",
"vue": "^2.6.10",
"vue-loader": "^15.8.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack-node-externals": "^3.0.0"
},
"engines": {
"node": ">=8"
}
}