-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "autopilot-sdk",
"description": "Node SDK for Autopilot",
"version": "1.0.1",
"author": "Samuel Amoah <[email protected]>",
"keywords": [
"node-js",
"autopilot",
"sdk"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"sinon": "^9.0.3",
"tape": "^4.6.3"
},
"dependencies": {
"axios": "^0.20.0"
},
"scripts": {
"prepublish": "npm run lint",
"test": "npm run compile && babel-tape-runner test/*.js",
"compile": "npm run lint && babel lib --out-dir dist --copy-files --source-maps",
"lint": "eslint lib"
},
"main": "dist/index.js"
}