-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "axios-api-versioning",
"author": "Rogelio Negrete (Weffe)",
"version": "3.0.0",
"description": "Adds api versioning for axios",
"main": "dist/index.js",
"module": "dist/axios-api-versioning.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"sandbox": "tsc -p sandbox/tsconfig.sandbox.json",
"prettier": "pretty-quick",
"prerelease": "run-s test build",
"release": "standard-version",
"docs": "docsify serve docs -o --port 2065"
},
"keywords": [
"axios",
"api versioning"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Weffe/axios-api-versioning"
},
"bugs": {
"url": "https://github.com/Weffe/axios-api-versioning/issues"
},
"homepage": "https://github.com/Weffe/axios-api-versioning",
"peerDependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"axios": "^0.19.2",
"axios-mock-adapter": "^1.17.0",
"docsify-cli": "^4.3.0",
"http-status-codes": "^1.3.2",
"husky": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.2.0",
"tsdx": "^0.12.3",
"typescript": "^3.7.5"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 130,
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"dependencies": {
"tslib": "^1.10.0"
}
}