-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1001 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
38
39
40
41
42
43
44
{
"name": "@flowifier/flowifier-client",
"description": "Flowifier JavaScript Client Library",
"version": "0.9.6",
"author": "Stefan Walter",
"license": "MIT",
"homepage": "https://flowifier.com",
"keywords": [
"flowifier",
"client",
"library"
],
"files": [
"README.md",
"lib/"
],
"main": "lib/index.js",
"scripts": {
"start": "node app/app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:woigl/flowifier-client-javascript.git"
},
"bugs": {
"url": "https://github.com/woigl/flowifier-client-javascript/issues"
},
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.7"
},
"dependencies": {
"axios": "^1.1.2",
"bson": "^5.1.0"
}
}