-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.08 KB
/
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
{
"name": "whispir",
"version": "1.1.0",
"description": "Whispir API wrapper",
"keywords": [
"whispir",
"api",
"messaging"
],
"homepage": "https://github.com/whispir/whispir-node",
"author": "Whispir <[email protected]> (https://whispir.com)",
"repository": {
"type": "git",
"url": "git://github.com/whispir/whispir-node.git"
},
"bugs": "https://github.com/whispir/whispir-node/issues",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"license": "MIT",
"dependencies": {
"request": "^2.88.2"
},
"devDependencies": {
"@stoplight/prism-cli": "^4.10.5",
"@types/jest": "^29.2.3",
"@types/node": "^12",
"@types/request": "^2.48.8",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"scripts": {
"clean": "rm -Rf node_modules/ *.js",
"build": "tsc",
"mock:server": "prism mock https://raw.githubusercontent.com/whispir/openapi/fix/prism-spec-update/openapi.yaml",
"test": "jest"
}
}