-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.96 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.96 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
74
75
76
77
78
79
80
81
82
{
"name": "smallapi-js",
"version": "1.0.4",
"description": "smallapi-js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"preferGlobal": false,
"private": false,
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint --ext .ts ./src",
"test": "echo \"Error: no test specified\"",
"format": "prettier --write src/**/*.ts",
"prebuild": "rimraf dist && npm run format",
"build": "microbundle",
"prepublishOnly": "npm run build",
"prerelease": "npm run build",
"release": "np",
"rab": "np --any-branch"
},
"files": [
"dist"
],
"tags": [
"smallapi",
"javascript",
"api",
"client",
"wrapper"
],
"author": "tutanck <tutanck@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/tutanck/smallapi-js.git"
},
"bugs": {
"url": "https://github.com/tutanck/smallapi-js/issues"
},
"homepage": "https://github.com/tutanck/smallapi-js#readme",
"dependencies": {
"axios": "0.21.1",
"crypto-js": "4.2.0",
"isarray": "2.0.5",
"lodash": "4.17.21",
"qs": "6.11.0",
"remove-trailing-slash": "0.1.1",
"url-parse": "1.5.10"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"all-contributors-cli": "^6.24.0",
"babel-jest": "^29.2.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"microbundle": "^0.15.1",
"np": "^10.0.7",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rimraf": "^3.0.2",
"typescript": "^5.6.3"
},
"keywords": [
"smallapi",
"client",
"api",
"fetch",
"wrapper"
]
}