-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@shaungrady/solaredge-client",
"version": "1.0.3",
"author": "Shaun Grady",
"description": "SolarEdge API Client",
"homepage": "https://github.com/shaungrady/solaredge-client",
"repository": "github:shaungrady/solaredge-client",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "ISC",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"watch": "tsc --build --watch",
"build": "tsc --build tsconfig.json tsconfig.cjs.json tsconfig.umd.json",
"lint": "eslint ./src --ext .ts",
"lint:staged": "lint-staged",
"test": "jest --maxWorkers=50%",
"release": "echo \"Releases are handled via GitHub\" && exit 1",
"prepublish": "yarn run build",
"ci:build": "yarn run build",
"ci:lint": "yarn run lint",
"ci:test": "yarn run test --ci --coverage",
"ci:release-draft": "node scripts/push-draft-release.js",
"prepare": "husky install"
},
"dependencies": {
"assert-never": "^1.2.1",
"cross-fetch": "^3.1.5",
"date-fns": "^2.28.0",
"query-string": "^7.1.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.14.31",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"dotenv": "^16.0.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "^27.5.1",
"jest-extended": "^0.11.5",
"lint-staged": "^12.3.4",
"msw": "^0.35.0",
"prettier": "^2.7.0",
"prettier-plugin-import-sort": "^0.0.7",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.6.2"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"volta": {
"node": "14.17.6",
"yarn": "1.22.11"
}
}