-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "autopilothq-node",
"version": "0.0.1",
"description": "A NodeJS API client for AutopilotHQ",
"repository": "https://github.com/TourConnect/autopilothq-node",
"author": "Seth McGuinness <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "webpack",
"prepublish": "npm run test && npm run build",
"test:dev": "jest --watchAll --runInBand --coverage",
"test": "jest --coverage"
},
"dependencies": {
"lodash.merge": "^4.6.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^23.6.0",
"nock": "10.0.5",
"regenerator-runtime": "^0.13.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
}
}