-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.49 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "gridl",
"version": "0.11.11",
"license": "MIT",
"author": {
"name": "Sascha Klatt",
"url": "https://saschaklatt.dev"
},
"homepage": "https://js.gridl.org",
"keywords": [
"grid",
"matrix",
"cell",
"2d",
"tile",
"map",
"data",
"structure",
"rows",
"columns",
"transformation",
"swap",
"rotate",
"move",
"mirror",
"flip",
"shift",
"reduce",
"search",
"find",
"traverse",
"walk",
"es6",
"typescript",
"functional"
],
"main": "index.js",
"scripts": {
"build": "yarn build:clean && yarn build:declarations && yarn build:rollup",
"build:clean": "rm -rf dist/*",
"build:declarations": "tsc --project tsconfig.declarations.json",
"build:rollup": "rollup -c --no-treeshake",
"build:typedoc": "typedoc --json docs/typedoc.json",
"lint": "eslint src/**/* test/**/*",
"lint:fix": "eslint src/**/* test/**/* --fix",
"test": "jest",
"test:coverage": "yarn test:coverage:report && yarn test:coverage:badge",
"test:coverage:report": "yarn jest --coverage",
"test:coverage:badge": "make-coverage-badge --output-path ./docs/badge-coverage.svg",
"start": "yarn test --watch",
"serve:coverage": "cd coverage/lcov-report/ && http-server",
"serve:stats": "cd stats/ && http-server",
"qa": "yarn test && yarn lint"
},
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"@types/redux": "^3.6.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"make-coverage-badge": "^1.2.0",
"redux": "^4.1.2",
"rollup": "^2.68.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-visualizer": "^5.6.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typedoc": "^0.20.35",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "4.2.x"
},
"directories": {
"lib": "src/",
"doc": "docs/",
"test": "test/"
},
"repository": "github:klattiation/gridl",
"bugs": {
"url": "https://github.com/klattiation/gridl/issues"
},
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/i62xdOZF3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}