forked from the-nuel/challonge-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 KB
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
{
"name": "@nuel/challonge-ts",
"version": "0.0.8",
"description": "Challonge API interface",
"main": "./build/index.js",
"typings": "build/index.d.ts",
"repository": "github:the-nuel/challonge-ts",
"author": "Michael Fiford",
"license": "MIT",
"scripts": {
"test": "jest tests",
"build": "gulp build"
},
"keywords": [
"challonge",
"typescript"
],
"files": [
"build"
],
"dependencies": {
"axios": "^0.18.1",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"@types/jest": "^23.1.1",
"@types/nock": "^9.1.3",
"gulp": "^4.0.0",
"gulp-concat": "^2.6.1",
"gulp-delete-lines": "0.0.7",
"gulp-typedoc": "^2.2.0",
"gulp-typescript": "^5.0.0-alpha.2",
"jest": "^23.1.0",
"nock-record": "^0.3.3",
"ts-jest": "^23.10.4",
"typedoc": "^0.15.0",
"typescript": "^3.1.6"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts$": "<rootDir>/preprocessor.js"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/docs/",
"/build/"
],
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"js"
]
}
}