-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 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
{
"name": "wildlink-js-client",
"version": "3.6.5",
"description": "A simple JavaScript client library for the Wildlink API (DEPRECATED)",
"homepage": "https://www.wildlink.me",
"repository": "https://github.com/wildlink/wildlink-js-client.git",
"author": "Wildfire Systems, Inc.",
"license": "MIT",
"keywords": [
"wildlink",
"wildfire"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "mocha -r ts-node/register test/**.test.ts",
"build": "tsc",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.5.1",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.1.2",
"expect": "^27.5.1",
"mocha": "^10.0.0",
"prettier": "^1.16.4",
"ts-node": "^8.3.0",
"typescript": "^3.7.5"
}
}