-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "ant-sdk-js",
"version": "0.1.0",
"description": "Antithesis SDK for Typescript and Javascript",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"build:all": "npm-run-all lint format test test:coverage clean && tsc",
"clean": "rimraf ./dist ./docs",
"format": "npx prettier --write src",
"format:check": "npx prettier --check src",
"jsdoc": "tsc && jsdoc -c jsdoc.json",
"lint": "eslint src",
"local": "tsx src",
"local:watch": "nodemon src -e ts,json -exec 'npm run local'",
"start": "node src",
"test:coverage": "jest --coverage",
"test": "jest"
},
"files": [
"dist/src/*"
],
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"nodemon": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"koffi": "^2.7.3"
}
}