Skip to content

Commit 9349f20

Browse files
Added LICENSE file.
1 parent c5ac58e commit 9349f20

File tree

2 files changed

+30
-5
lines changed

2 files changed

+30
-5
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Extrawest
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "@extrawest/node-ts-ocpp",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "OCPP 2.0.1: Open Charge Point Protocol",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",
7+
"homepage": "https://github.com/extrawest/ocpp-node-ts/",
78
"scripts": {
89
"compileSchema": "npx ts-node scripts/compile.ts",
910
"prepublish": "npm run build",
1011
"build": "tsc",
1112
"test": "jest",
1213
"lint": "eslint src --ext .ts,.tsx",
13-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
14+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
1415
"create-badges": "istanbul-badges-readme"
1516
},
1617
"keywords": [
@@ -25,7 +26,7 @@
2526
"license": "MIT",
2627
"repository": {
2728
"type": "git",
28-
"url": ""
29+
"url": "https://github.com/extrawest/ocpp-node-ts/"
2930
},
3031
"dependencies": {
3132
"ajv": "^8.12.0",
@@ -67,11 +68,14 @@
6768
"transform": {
6869
"^.+\\.(t|j)s$": "ts-jest"
6970
},
70-
"coverageReporters": ["json-summary", "lcov"],
71+
"coverageReporters": [
72+
"json-summary",
73+
"lcov"
74+
],
7175
"collectCoverageFrom": [
7276
"**/*.(t|j)s"
7377
],
7478
"coverageDirectory": "../coverage",
7579
"testEnvironment": "node"
7680
}
77-
}
81+
}

0 commit comments

Comments
 (0)