-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
53
54
{
"name": "jest-api-test-typescript-example",
"version": "1.0.0",
"description": "An example project which provides the necessary boilerplate for a reusable and maintainable jest test framework",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --forceExit --detectOpenHandles --passWithNoTests",
"unit:test": "npm run test unit_test -- --coverage",
"unit:test:ci" : "npm run unit:test -- --ci && npm run build",
"functional:test": "npm run test functional_test --forceExit --detectOpenHandles --passWithNoTests",
"build": "tsc",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "npm run lint -- --fix",
"cleanup": "rm -rf node_modules; rm -rf dist; npm i"
},
"repository": {
"type": "git",
"url": "[email protected]:jmfiola/jest-api-test-typescript-example.git"
},
"author": "Jacob Fiola",
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": "16.x",
"npm": "8.x"
},
"dependencies": {
"axios": "^0.21.4",
"form-data": "2.3.3",
"json-stringify-safe": "5.0.1",
"tslog": "3.2.2",
"uuid": "8.3.2",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"axios-mock-adapter": "^1.20.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"jest-junit": "^13.0.0",
"prettier": "2.3.2",
"process": "0.11.10",
"ts-jest": "26.5.6",
"typescript": "4.2.4",
"uuidv4": "^6.2.12"
}
}