-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 803 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 803 Bytes
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
{
"name": "sync-two-axes",
"description": "Algorithm to sync/align two axes' ticks so that their intervals are 'nice'.",
"version": "0.0.1",
"main": "src/index.js",
"scripts": {
"lint": "npx eslint src/ --ext .js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/pc592/sync-two-axes.git"
},
"keywords": [
"graph",
"graphs",
"axis",
"axes",
"sync",
"align",
"ticks",
"tick",
"marks"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pc592/sync-two-axes/issues"
},
"homepage": "https://github.com/pc592/sync-two-axes#readme",
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3"
}
}