-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
{
"name": "rabonajs",
"version": "0.0.3-alpha.12",
"description": "RabonaJS is a simple D3 wrapper to make soccer visualisations",
"author": "[email protected]",
"license": "MIT",
"url": "https://github.com/orabazu/rabonajs",
"scripts": {
"ts-types": "tsc",
"build:dev": "rimraf lib && tsup && yarn ts-types",
"build:watch": "rimraf lib && yarn ts-types && tsup --watch",
"build": "rimraf lib && tsup && yarn ts-types",
"lint:fix": "eslint ./src --ext .ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"tsup": "^6.0.1"
},
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"d3": "^7.4.4",
"typescript": "^4.7.2",
"uniqid": "^5.4.0"
},
"type": "module",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"bash -c tsc --noEmit",
"eslint ./src --ext .ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\" "
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}