-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "cmap",
"version": "0.0.1",
"description": "Display and compare biological maps (genetic, physical, cytogenetic, genomic, linkage groups, chromosomes, scaffolds).",
"main": "build/cmap.min.js",
"type": "module",
"scripts": {
"lint": "eslint src tests",
"build": "rollup -c",
"pretest": "npm run build",
"test": "node ./node_modules/ospec/bin/ospec --preload ./tests/test-setup.js",
"coverage": "nyc npm test",
"watch": "rollup -c -w --environment WATCH:yes",
"validate-config": "ajv -s cmap-schema.json -d cmap.json",
"postinstall": "ln -f ./mixwith.js/src/mixwith.js ./mixwith.js/src/mixwith.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LegumeFederation/cmap-js.git"
},
"author": "Andrew Wilkey <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/LegumeFederation/cmap-js/issues"
},
"homepage": "https://github.com/LegumeFederation/cmap-js#readme",
"engines": {
"node": ">=8.0.0",
"npm": ">=4.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-attributes": "^7.25.6",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"ajv-cli": "^5.0.0",
"chai": "^3.5.0",
"cssnano": "^7.0.6",
"jsdom": "^24.1.1",
"mithril-query": "^2.5.2",
"nyc": "^17.1.0",
"ospec": "^4.2.0",
"postcss-nested": "^6.2.0",
"postcss-preset-env": "^10.0.5",
"postcss-simple-vars": "^7.0.1",
"rollup": "^2.79.2",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-uglify": "^4.0.0"
},
"overrides": {
"ajv-cli": {
"fast-json-patch": "^3.1.1"
}
},
"dependencies": {
"ecma-proposal-math-extensions": "0.0.2",
"hammerjs": "^2.0.8",
"hamsterjs": "^1.1.2",
"mithril": "^2.2.2",
"normalize.css": "^8.0.1",
"papaparse": "^5.4.1",
"pubsub-js": "^1.5.5",
"query-string": "^6.1.0",
"random-words": "0.0.1",
"rbush": "^2.0.1",
"rbush-knn": "^2.0.0",
"skeleton-css": "^2.0.4"
},
"nyc": {
"exclude": [
"src/main.js",
"src/CMAP.js",
"src/developmentTooling.js",
"build"
]
},
"directories": {
"test": "test"
}
}