-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
47
48
49
50
51
52
{
"name": "automation-test-with-submodule-typescript-sdk",
"version": "1.0.13",
"description": "Client for Test Automation (No submodules)",
"author": "Konfig",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/eddiechayes/automation-test.git",
"directory": "typescript"
},
"homepage": "https://github.com/eddiechayes/automation-test/tree/HEAD/typescript#readme",
"keywords": [
"axios",
"typescript",
"konfig",
"automation-test-with-submodule-typescript-sdk"
],
"license": "Unlicense",
"files": [
"./dist/**/*"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && webpack",
"clean": "rm -rf dist/",
"prepack": "npm run build",
"test": "jest"
},
"dependencies": {
"axios": "1.6.4"
},
"resolutions": {
"semver": "^7.5.2",
"@babel/traverse": "^7.23.2"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.2.4",
"@types/node": "^18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^4.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}