-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.39 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
{
"name": "@cadolabs/auther-client",
"version": "1.1.0",
"main": "dist/auther-client.cjs.js",
"module": "dist/auther-client.es.js",
"description": "Client for working with auther on the frontend side",
"repository": "https://github.com/Cado-Labs/auther-client",
"homepage": "https://github.com/Cado-Labs/auther-client",
"author": "Andreev Sergey <[email protected]>",
"type": "module",
"license": "MIT",
"scripts": {
"build": "rm -rf dist; rollup -c",
"watch": "yarn build --watch",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/runtime": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-jest": "^29.2.2",
"coveralls": "^3.1.1",
"eslint": "^8.26.0",
"eslint-config-umbrellio": "^5.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.7.1",
"rollup": "^3.2.3"
}
}