-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "phenogrid",
"version": "1.5.5",
"description": "Monarch PhenoGrid widget",
"repository": {
"type": "git",
"url": "https://github.com/monarch-initiative/phenogrid.git"
},
"keywords": [
"monarch",
"phenogrid",
"widget",
"visualization"
],
"author": "University of Pittsburgh, Department of Biomedical Informatics",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/monarch-initiative/phenogrid/issues"
},
"files": [
"dist/",
"config/",
"css/",
"js/",
"README.md"
],
"homepage": "https://github.com/monarch-initiative/phenogrid",
"scripts": {
"clean": "rm -rf dist/",
"rmdsstore": "find . -name '.DS_Store' -print -delete",
"lint": "eslint js/",
"build": "gulp bundle",
"devbuild": "gulp dev-bundle",
"buildandserve": "npm run devbuild && http-server -c-1",
"pack": "npm run rmdsstore && npm run build && npm pack"
},
"dependencies": {
"d3": "5.7.0",
"font-awesome": "4.7.0",
"gulp-uglify-es": "^3.0.0",
"jquery": "^3.6.0",
"jquery-ui": "1.12.1",
"normalize.css": "8.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"file-saver": "^2.0.5",
"gulp": "^4.0.2",
"gulp-concat": "2.6.1",
"gulp-cssnano": "2.1.3",
"gulp-eslint": "^6.0.0",
"gulp-file-include": "^2.3.0",
"gulp-mocha": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-streamify": "1.0.2",
"gulp-uglify": "^3.0.2",
"http-server": "^13.0.0",
"lodash": "^4.17.15",
"vinyl-source-stream": "2.0.0"
},
"main": "js/phenogrid.js"
}