-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "netmock-js",
"version": "2.0.15",
"description": "A javascript network mocker for tests",
"main": "lib/index.js",
"scripts": {
"tsc": "tsc",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint '{**/*,*}.{js,ts}'",
"lint:fix": "eslint '{**/*,*}.{js,ts}' --fix",
"test": "npm run lint && npm run testjs",
"testjs": "jest",
"release": "bash -e scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/netmock.git"
},
"author": "Tomer Groisman",
"license": "ISC",
"bugs": {
"url": "https://github.com/wix-incubator/netmock/issues"
},
"dependencies": {
"node-fetch": "^2.0.0"
},
"homepage": "https://github.com/wix-incubator/netmock#readme",
"devDependencies": {
"axios": "^0.27.2",
"@babel/preset-env": "^7.18.9",
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-jest": "^28.1.3",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.2",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"typescript": "^5.6.2"
},
"files": [
"src",
"lib",
"LICENSE"
]
}