-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@cisco-meraki/dashboard-api-tools",
"author": "Cisco Meraki",
"version": "1.0.7",
"description": "Typescript library for interacting with Meraki's public API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest",
"build": "tsc --build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx test/ src/",
"prettierFormat": "prettier --config .prettierrc.json --write .",
"publishPackage": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meraki/dashboard-api-tools.git"
},
"keywords": [
"cisco",
"meraki",
"dashboard",
"api"
],
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/meraki/dashboard-api-tools/issues"
},
"homepage": "https://github.com/meraki/dashboard-api-tools#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.5.5"
}
}