-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
45
46
47
48
49
50
51
{
"name": "kisi-client",
"version": "8.0.0",
"repository": "https://github.com/kisi-inc/client-js",
"license": "MIT",
"description": "A JavaScript client for the Kisi API",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"type": "module",
"exports": {
".": {
"require": "./lib/index.cjs",
"default": "./src/index.js"
}
},
"sideeffects": false,
"scripts": {
"build": "mkdir -p ./lib && babel src/index.js --out-file lib/index.cjs",
"prepublish": "yarn build",
"test": "yarn build && mocha"
},
"dependencies": {
"axios": "^1.7.3",
"humps": "^2.0.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "none",
"bracketSpacing": true
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"axios-mock-adapter": "^2.0.0",
"chai": "^5.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mocha": "^11.0.1"
},
"engines": {
"node": ">=12.0.0"
}
}