forked from rayfranco/aircall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@govirtuo/aircall",
"version": "0.5.0",
"description": "Aircall API for node",
"repository": {
"type": "git",
"url": "git://github.com/govirtuo/aircall.git"
},
"keywords": [
"aircall",
"API"
],
"main": "./dist/lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"dist/*"
],
"scripts": {
"build": "npm run clean && echo 'Compiling Typescript' && tsc --version && tsc --pretty",
"clean": "rimraf dist",
"major-release-candidate": "npm version premajor --preid rc && npm publish --tag beta",
"major-release": "npm version major && npm publish",
"minor-release-candidate": "npm version preminor --preid rc && npm publish --tag beta",
"minor-release": "npm version minor && npm publish",
"next-release-candidate": "npm version prerelease --preid rc && npm publish --tag beta",
"patch-release-candidate": "npm version prepatch --preid rc && npm publish --tag beta",
"patch-release": "npm version patch && npm publish",
"postpublish": "git push --tags",
"pre-release": "npm version prerelease --preid rc && npm publish --tag beta",
"test": "mocha --opts test/mocha.opts \"./dist/test/**/*.js\""
},
"author": "Franco Bouly (@rayfranco)",
"license": "MIT",
"dependencies": {
"defaults": "~1.0.3",
"superagent": "^3.8.3"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@types/defaults": "^1.0.3",
"@types/mocha": "^9.0.0",
"@types/superagent": "^4.1.13",
"mocha": "^5.2.0",
"typescript": "^4.5.2"
}
}