-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "arena-ts",
"version": "1.0.2",
"description": "A typescript API client for Are.na",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/e-e-e/arena-ts.git"
},
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "tsc -b tsconfig.build.json -w",
"docs": "typedoc",
"lint": "eslint ./src --fix",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --watch",
"prepublish": "yarn lint && yarn build && yarn docs"
},
"files": [
"dist/"
],
"author": "Benjamin Forster",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.7",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2",
"typescript-eslint": "^0.0.1-alpha.0"
}
}