-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 947 Bytes
/
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
{
"name": "apiwrappers.js",
"version": "2.1.0",
"description": "A big api wrapper",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "jest",
"watch-test": "jest --watchAll",
"build": "tsc -b",
"prepublishOnly": "npm run build"
},
"keywords": [
"api",
"api wrapper",
"meme",
"oxford api",
"es6",
"promises",
"javascript",
"web",
"fast"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/MakeJavaScriptEasy/apiwrappers.js.git"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.8",
"@types/node": "^17.0.21",
"jest": "^27.2.5",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"files": [
"dist/"
]
}