forked from aalemayhu/squidex-client-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.21 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
{
"name": "squidex-client-manager",
"version": "0.5.10",
"description": "a client for interacting with the Squidex API",
"bugs": "https://github.com/scanf/squidex-client-manager/issues",
"keywords": [
"squidex",
"squidex-api",
"swagger",
"squidex-client-manager",
"client"
],
"main": "src/index.js",
"repository": "https://github.com/scanf/squidex-client-manager",
"author": "Alexander Alemayhu <[email protected]>",
"license": "MIT",
"scripts": {
"lint-fix": "eslint --fix --ext .js --ignore-path .gitignore .",
"test-v": "ava --verbose --fail-fast tests/test_crud.js",
"test": "ava --fail-fast tests/*.js",
"mangle-examples": "sed -i -e \"s=squidex-client-manager=../src/index.js=\" examples/*"
},
"dependencies": {
"axios": "^0.19.0",
"buffer-type": "^1.0.0",
"dotenv": "^8.1.0",
"form-data": "^2.5.1",
"fs-extra": "^8.0.1",
"mime-types": "^2.1.24",
"querystring": "^0.2.0",
"swagger-client": "^3.9.4"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.16.0"
}
}