-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
37 lines (37 loc) · 939 Bytes
/
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": "flowcl-node-api-client",
"version": "1.1.6",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf lib && babel es -d lib --source-maps",
"run-example": "node ./examples/server.js"
},
"files": [
"es",
"lib",
"index.js",
"index.d.ts"
],
"author": "Esteban Fuentealba <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"axios-retry": "^3.1.2",
"babel-runtime": "^6.26.0",
"crypto": "^1.0.1",
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.3",
"express": "^4.16.4"
},
"typings": "./index.d.ts"
}