-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
34 lines (34 loc) · 908 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
{
"name": "envato",
"version": "dev",
"description": "A fully typed library for the Envato API (unofficial).",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha --timeout 30000"
},
"repository": "github:baileyherbert/envato.js",
"author": "Bailey Herbert <[email protected]> (https://bailey.sh)",
"bugs": "https://github.com/baileyherbert/envato.js/issues",
"keywords": [
"envato",
"envato api",
"envato market"
],
"dependencies": {
"@types/node": "*",
"@types/node-fetch": "^2.5.12",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}