-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "chess-web-api",
"version": "1.2.0",
"description": "chess.com api wrapper",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ignore-pattern node_modules/",
"lint:fix": "eslint . --ignore-pattern node_modules/ --fix",
"test": "jest --runInBand --detectOpenHandles",
"test:ci": "jest --verbose --runInBand --detectOpenHandles",
"test:watch": "jest --watch --runInBand --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andyruwruw/chess-web-api.git"
},
"keywords": [
"Chess",
"API",
"chess.com",
"wrapper"
],
"author": "Andrew Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/andyruwruw/chess-web-api/issues"
},
"homepage": "https://github.com/andyruwruw/chess-web-api#readme",
"dependencies": {
"chess.js": "^0.11.0",
"superagent": "^5.2.1"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"jest-each": "^26.6.2"
}
}