-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "itscalledsoccer",
"version": "2.0.0-rc.1",
"description": "A library for interacting with the ASA API",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "chokidar \"src/*.ts\" -c \"npm run build\"",
"test": "npm run lint && npm run unit-test",
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint src/**.ts tst/**.ts",
"watch-unit-test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tst/*.test.ts --watchAll",
"unit-test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tst/*.test.ts"
},
"keywords": [
"soccer",
"itscalledsoccer",
"soccer-api"
],
"author": "Doug Wade <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/American-Soccer-Analysis/itscalledsoccer-js"
},
"dependencies": {
"change-case": "^5.4.2",
"core-js": "^3.33.3",
"fuse.js": "^7.0.0",
"regenerator-runtime": "^0.14.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"chokidar-cli": "^3.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.3.0",
"jest": "^29.7.0",
"jest-fail-on-console": "^3.1.2",
"prettier": "3.4.2",
"ts-jest": "^29.1.2"
},
"files": [
"dist",
"README.md",
"package.json"
]
}