-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
50
{
"name": "replicate-js",
"version": "0.0.7",
"description": "WIP Replicate JS Client",
"main": "replicate.js",
"types": "replicate.d.ts",
"type": "module",
"dependencies": {
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"node-fetch": "^3.2.6"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:unit": "ava replicate.test.ts",
"test:e2e-node": "ava replicate.node.e2e.ts --timeout=5m",
"test:e2e-browser": "ava replicate.browser.e2e.ts --timeout=5m",
"test:all": "npm run test:unit && npm run test:e2e-node && npm run test:e2e-browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicholascelestin/replicate-js.git"
},
"author": "Nicholas Celestin",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicholascelestin/replicate-js/issues"
},
"homepage": "https://github.com/nicholascelestin/replicate-js#readme",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/express": "^4.17.13",
"ava": "^4.3.3",
"axios": "^0.27.2",
"js-to-ts-converter": "^0.18.2",
"prettier": "2.7.1",
"puppeteer": "^16.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}