-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 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
59
60
61
62
63
64
65
66
67
{
"name": "@the-orange-alliance/api",
"version": "0.23.0",
"description": "The Orange Alliance Library for Node.js",
"author": "The Orange Alliance, Josh Bacon",
"license": "MIT",
"keywords": [],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:docs": "typedoc --mode modules --out docs/ src/",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"lib"
],
"directories": {
"lib": "lib",
"test": "tests"
},
"dependencies": {
"@types/luxon": "^1.22.0",
"@types/node": "^12.20.36",
"@types/qs": "^6.9.0",
"cross-fetch": "^3.1.4",
"luxon": "^1.23.0",
"qs": "^6.9.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orange-alliance/the-orange-alliance-nodejs.git"
},
"bugs": {
"url": "https://github.com/orange-alliance/the-orange-alliance-nodejs/issues"
},
"homepage": "https://github.com/orange-alliance/the-orange-alliance-nodejs#readme",
"jest": {
"roots": [
"<rootDir>/tests"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/util/"
],
"testMatch": [
"**/tests/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/tests/util/"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest"
}
}
}