-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
{
"name": "place-visualizations",
"description": "A series of visualizations based on the Place tile placement data.",
"version": "1.0.0",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"./**/*.ts\" --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Place-Visualizations.git"
},
"keywords": [
"reddit",
"place",
"canvas",
"data",
"visualization"
],
"author": "haykam821",
"license": "MIT",
"bugs": {
"url": "https://github.com/Snakeroom/Place-Visualizations/issues"
},
"homepage": "https://github.com/Snakeroom/Place-Visualizations#readme",
"dependencies": {
"canvas": "^2.9.1",
"cosmiconfig": "^7.0.1",
"csv-parser": "^3.0.0",
"debug": "^4.3.4",
"ejs": "^3.1.6",
"fs-extra": "^10.0.1",
"merge-deep": "^3.0.3",
"supports-color": "^9.2.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/ejs": "^3.1.0",
"@types/fs-extra": "^9.0.13",
"@types/merge-deep": "^3.0.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"eslint-config-haykam": "^1.16.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": [
"eslint-config-haykam",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"semi": "off",
"@typescript-eslint/semi": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"sort-imports": "error"
}
}
}