-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 Bytes
/
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
{
"name": "phasic",
"version": "1.0.2",
"description": "Run functions in phases. Useful for load and performance testing",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"test": "ts-node ./test/test.ts",
"test:server": "ts-node ./test/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stepci/phasic.git"
},
"keywords": [
"load-testing",
"performance-testing",
"testing"
],
"author": "Mish Ushakov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stepci/phasic/issues"
},
"homepage": "https://github.com/stepci",
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.2",
"fastify": "^4.9.2",
"node-fetch": "^2.6.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"files": [
"dist"
]
}