-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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": "codingame-api-node-ts",
"version": "0.0.4",
"description": "A CodinGame API node, that permits you to access all of the endpoints of this website. Wrote in TypeScript, so you can previsualize how the response will look like by checking the code.",
"main": "./build/main/index.js",
"typings": "./build/main/index.d.ts",
"module": "./build/module/index.js",
"scripts": {
"build": "tsc",
"test": "ava",
"doc": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sigeth/codingame-api-node-ts.git"
},
"keywords": [
"codingame",
"api",
"typescript",
"endpoints"
],
"author": "Sigeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sigeth/codingame-api-node-ts/issues"
},
"homepage": "https://github.com/Sigeth/codingame-api-node-ts#readme",
"devDependencies": {
"@types/node": "^15.6.1",
"ava": "^3.15.0",
"codecov": "^3.8.2",
"dotenv": "^10.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1"
},
"ava": {
"files": [
"build/main/**/*.spec.js"
],
"ignoredByWatcher": [
"src/**/*.ts",
"build/main/**/*.d.*",
"build/main/**/*.spec.d.*"
]
}
}