generated from Webeleon/typecript-npm-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "@webeleon/codingame-api",
"version": "0.0.0",
"description": "Typescript client for codingame api",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"patch": "npm run build && npm version patch && npm publish",
"format": "prettier --write '**/*.ts'",
"build": "tsc",
"generate-doc": "typedoc",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/codingame-api"
},
"bugs": {
"url": "https://github.com/Webeleon/codingame-api/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "[email protected]"
}
],
"keywords": [
"codingame",
"webeleon",
"npm",
"typescript"
],
"author": "Julien Prugne<[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/jest": "27.5.2",
"@types/sinon": "10.0.20",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "11.2.6",
"prettier": "2.8.8",
"sinon": "11.1.2",
"standard-version": "9.5.0",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typedoc": "0.27.9",
"typescript": "4.9.5"
},
"dependencies": {
"node-fetch": "3.3.2",
"query-string": "7.1.3"
},
"lint-staged": {
"*.{ts}": "prettier --write"
}
}