-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from connected-hil/feat/ocpp_201
Feat/ocpp 201
- Loading branch information
Showing
361 changed files
with
26,167 additions
and
1,387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
{ | ||
"name": "@cshil/ocpp-tools", | ||
"version": "0.0.1", | ||
"version": "1.1.0", | ||
"description": "A package containing schemas, types and validations for OCPP protocol version 1.6.x", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"main": "./index.js", | ||
"types": "./index.d.ts", | ||
"files": ["*"], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/connected-hil/ocpp-tools.git" | ||
|
@@ -17,13 +14,13 @@ | |
"generate-docs": "typedoc --out docs/ --entryPointStrategy expand ./src ./images", | ||
"check-types": "tsc --noEmit", | ||
"generate": "pnpm ts-node scripts/compile-schemas-to-types.ts", | ||
"build": "pnpm tsup", | ||
"test": "jest" | ||
"build": "rimraf dist; tsc --project tsconfig.build.json", | ||
"custom:publish": "cp package.json dist && cd dist && pnpm publish --access public --publish-branch main --no-git-checks", | ||
"custom:pack": "cp packge.json dist/ && cd dist && pnpm pack --pack-destination ../", | ||
"test": "jest --no-coverage", | ||
"test:coverage": "jest" | ||
}, | ||
"keywords": [ | ||
"OCPP", | ||
"schema" | ||
], | ||
"keywords": ["OCPP", "schema"], | ||
"author": "l-arte <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
|
@@ -42,9 +39,9 @@ | |
"jest": "^29.7.0", | ||
"jest-sonar-reporter": "^2.0.0", | ||
"json-schema-to-typescript": "^13.1.2", | ||
"rimraf": "^5.0.5", | ||
"ts-jest": "^29.1.2", | ||
"ts-node": "^10.9.2", | ||
"tsup": "^8.0.2", | ||
"typedoc": "^0.25.12", | ||
"typescript": "5.3.3", | ||
"typescript-eslint": "^7.4.0" | ||
|
Oops, something went wrong.