-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.79 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "skypicker",
"version": "0.0.0-development",
"description": "Client to connect to the Skypicker API",
"main": "build/index.js",
"scripts": {
"codecov": "npx codecov",
"commitmsg": "npx commitlint -e $GIT_PARAMS",
"compile": "npx babel -d build/ src/ --copy-files --ignore node_modules,*.test.js,setupTest.js",
"lint": "npx eslint --ext .js .",
"test": "npx jest",
"prepublishOnly": "npm run compile",
"semantic-commit": "npx commit",
"semantic-release": "npx semantic-release",
"travis-deploy-once": "npx travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/skypicker-client.git"
},
"keywords": [
"skypicker",
"flights",
"airlines",
"client"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaebradley/skypicker-client/issues"
},
"homepage": "https://github.com/jaebradley/skypicker-client#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@commitlint/prompt-cli": "^8.3.5",
"axios-debug": "0.0.4",
"babel-jest": "^26.0.1",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"codecov": "^3.7.0",
"dotenv": "^8.2.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.2.5",
"jest": "^26.0.1",
"semantic-release": "^17.0.8",
"travis-deploy-once": "^5.0.11",
"utf-8-validate": "^5.0.2"
},
"dependencies": {
"axios": "^0.19.2",
"moment-timezone": "^0.5.31",
"qs": "^6.9.4"
}
}