-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.39 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
{
"name": "funkyheatmapjs",
"version": "0.2.5",
"description": "JS version of funkyheatmap",
"source": "./src/main.js",
"type": "module",
"module": "./dist/funkyheatmap.js",
"unpkg": "./dist/funkyheatmap.min.js",
"browser": "./dist/funkyheatmap.min.js",
"scripts": {
"start": "parcel vignettes/*.html vignettes/*.csv vignettes/*.png",
"build": "parcel build --no-cache",
"build-vignettes": "parcel build --target vignettes && cp ./vignettes/*.csv ./vignettes/*.png ./vignettes/tutorials.json ./dist/vignettes/",
"docs": "npm run build && npm run build-vignettes && find docs -name static -prune -o -type f -exec rm {} \\; && jsdoc -r -c jsdoc.json",
"lint": "node ./node_modules/eslint/bin/eslint . --ext .js --fix",
"test": "mocha --es-module-specifier-resolution=node tests"
},
"repository": {
"type": "git",
"url": "https://github.com/funkyheatmap/funkyheatmapjs"
},
"bugs": {
"url": "https://github.com/funkyheatmap/funkyheatmapjs/issues"
},
"files": [
"./dist/funkyheatmap.js",
"./dist/funkyheatmap.min.js",
"./src/*",
"./test/*",
"./tests/*"
],
"keywords": [],
"author": {
"name": "Nick Markov",
"url": "https://mxposed.github.io"
},
"license": "MIT",
"peerDependencies": {
"d3": "^7.8.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jsdoc": "^4.0.4",
"mocha": "^10.2.0",
"parcel": "^2.8.3"
},
"alias": {
"d3": {
"global": "d3"
},
"lodash": {
"global": "_"
}
},
"targets": {
"browser": {
"distDir": "./dist",
"optimize": true
},
"module": {
"distDir": "./dist",
"context": "node",
"outputFormat": "esmodule"
},
"vignettes": {
"distDir": "./dist/vignettes",
"context": "browser",
"source": [
"./vignettes/full.html",
"./vignettes/simple.html",
"./vignettes/scIB.html"
],
"outputFormat": "global",
"isLibrary": false,
"publicUrl": "./"
}
}
}