-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.23 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@nationskollen/sdk",
"version": "3.1.0",
"description": "Nationskollen JavaScript API client SDK",
"repository": "git://github.com/nationskollen/sdk.git",
"author": "Nationskollen",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@nationskollen"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"setup": "npm install && cd example && npm install",
"dev": "rm -rf example/src/sdk && npx concurrently \"npm:watch\" \"npm:example:react\"",
"watch": "NODE_ENV=testing rollup -cw",
"build": "rollup -c",
"example:react": "cd example && npm run start",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"docs": "npx typedoc src/**",
"docs:watch": "npx typedoc src/** --watch",
"test": "jest"
},
"files": [
"lib"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"concurrently": "^6.0.1",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"prettier": "2.3.2",
"react": "^17.0.2",
"react-async-hook": "^3.6.2",
"react-dom": "^17.0.2",
"rollup": "^2.52.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy-watch": "^0.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"swr": "^0.5.6",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4",
"jest-websocket-mock": "^2.2.1",
"mock-socket": "^9.0.3"
},
"peerDependencies": {
"react": "16 - 17",
"react-async-hook": "^3.6.2",
"swr": "^0.5.5"
},
"optionalDependencies": {
"@nationskollen/typedoc-theme-overrides": "^1.0.2",
"typedoc": "^0.20.35"
}
}