forked from rtspw/Multidimensional-Map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "@wpoynter/multidimensional-map",
"version": "1.3.0",
"description": "Maps multiple keys to one entry",
"keywords": [
"map",
"multidimensional",
"key",
"cube",
"olap"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "rollup -c",
"prebuild": "[ -d dist ] && rm -f dist/*",
"build": "rollup -c",
"pretest": "yarn run build",
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"author": "rtspw <[email protected]>",
"contributors": [
{
"name": "rtspw",
"email": "[email protected]"
},
{
"name": "wpoynter",
"email": "[email protected]",
"url": "https://williampoynter.co.uk"
}
],
"maintainers": [
{
"name": "wpoynter",
"email": "[email protected]",
"url": "https://williampoynter.co.uk"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wpoynter/multidimensional-map"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.39.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rollup": "^3.21.4",
"tslib": "^2.5.0",
"typescript": "^5.0.0"
},
"packageManager": "[email protected]"
}