@mchp-mcc/scf-pic8-interrupt-v3 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,221 @@
1
+ {
2
+ "name": "@mchp-mcc/scf-pic8-interrupt-v3",
3
+ "version": "1.0.0",
4
+ "scf": {
5
+ "reducer": "auto",
6
+ "creator": "output/creator.js",
7
+ "processor": "output/processor.js",
8
+ "nullPrototype": "output/nullPrototype.json",
9
+ "views": {
10
+ "main": "auto"
11
+ },
12
+ "displayName": "Interrupt Manager",
13
+ "category": "System",
14
+ "autoProcessor": "output/autoProcessor.js",
15
+ "autoCreator": "output/autoCreator.js",
16
+ "description": "The Interrupt Manager configures the interrupt and handles the interrupt requests and prioritizations.",
17
+ "prototype": {
18
+ "payload": null,
19
+ "imports": {
20
+ "scf_pic8_interrupt_v3": {
21
+ "interfaceId": {
22
+ "name": "scf-pic8-interrupt-v3",
23
+ "version": "1.0.0"
24
+ },
25
+ "isRequired": true
26
+ },
27
+ "initializer_system": {
28
+ "interfaceId": {
29
+ "name": "initializer-system",
30
+ "version": "^0"
31
+ }
32
+ },
33
+ "initializer_main": {
34
+ "interfaceId": {
35
+ "name": "initializer-main",
36
+ "version": "^0"
37
+ }
38
+ },
39
+ "pin_standard": {
40
+ "interfaceId": {
41
+ "name": "pin-standard",
42
+ "version": "^0"
43
+ }
44
+ },
45
+ "device_meta": {
46
+ "interfaceId": {
47
+ "name": "device-meta",
48
+ "version": "^1"
49
+ }
50
+ }
51
+ },
52
+ "exports": {
53
+ "interrupt": {
54
+ "interfaces": [
55
+ {
56
+ "interfaceId": {
57
+ "name": "interrupt-standard",
58
+ "version": "1.0.1"
59
+ }
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ "isEntryPoint": true
65
+ }
66
+ },
67
+ "scf-automodule": {
68
+ "peripheral": {
69
+ "deviceName": "PIC16F1829",
70
+ "interfaceId": {
71
+ "name": "scf-pic8-interrupt-v3",
72
+ "version": "any"
73
+ },
74
+ "instance": "INTERRUPT MANAGER"
75
+ },
76
+ "shouldNotifyOnDeploy": false,
77
+ "mode": "standard",
78
+ "hookPaths": {}
79
+ },
80
+ "license": "SEE LICENSE IN LICENSE.txt",
81
+ "scripts": {
82
+ "build": "gulp build --gulpfile config/gulpfile.js --cwd .",
83
+ "build-dev": "gulp build --gulpfile config/gulpfile.js --buildDev --cwd .",
84
+ "build-prod": "gulp build --gulpfile config/gulpfile.js --production --cwd .",
85
+ "start": "gulp start --gulpfile config/gulpfile.js --cwd .",
86
+ "test": "jest",
87
+ "create-auto-module": "gulp create-auto-module --gulpfile config/gulpfile.js --cwd .",
88
+ "build-run-dir": "node config/extract-run-directory.js",
89
+ "build-latest-run-dir": "yarn add @microchip/run-directory && yarn build-run-dir",
90
+ "dist": "gulp dist --gulpfile config/gulpfile.js --cwd .",
91
+ "lint:nofix": "eslint \"./src/**/*.{ts,tsx}\" --quiet",
92
+ "lint": "tsc --noEmit && yarn lint:nofix --fix",
93
+ "updateProject": "node config/create-auto-module.js --updateProject=true",
94
+ "update-auto-module": "yarn add @microchip/scf-automodule -D && yarn updateProject",
95
+ "test:itf:all": "node ./node_modules/@microchip/ccl-itf/lib/index.js --sp=./tests --rd=./run --sf=interrupt.major.test.ts --df=\"PIC16F1829\"",
96
+ "test:itf:dev": "node ./node_modules/@microchip/ccl-itf/lib/index.js --sp=./tests --rd=./run --sf=interrupt.major.test.ts --df=\"PIC16F1829\"",
97
+ "postprocess": "node config/appendPrototype.js"
98
+ },
99
+ "husky": {
100
+ "hooks": {
101
+ "pre-commit": "tsc --noEmit && lint-staged"
102
+ }
103
+ },
104
+ "lint-staged": {
105
+ "./src/**/*.{ts,tsx}": [
106
+ "eslint --fix"
107
+ ]
108
+ },
109
+ "files": [
110
+ "output/**/*",
111
+ "config.json"
112
+ ],
113
+ "jest": {
114
+ "testPathIgnorePatterns": [
115
+ "/node_modules/",
116
+ "/run/",
117
+ "/generated_module/examples/",
118
+ "/lib/",
119
+ "/tests/itf/"
120
+ ],
121
+ "modulePathIgnorePatterns": [
122
+ "<rootDir>/run"
123
+ ],
124
+ "preset": "ts-jest",
125
+ "collectCoverage": true,
126
+ "coverageThreshold": {
127
+ "./src": {
128
+ "branches": 80,
129
+ "functions": 80,
130
+ "lines": 80,
131
+ "statements": 80
132
+ }
133
+ }
134
+ },
135
+ "jenkinsPipeline": "MCU8_DS_PIPELINE_2XY",
136
+ "dependencies": {
137
+ "@microchip/api-prefix-registration": "^0.1.0",
138
+ "@microchip/basic_pin": "^1.0.2",
139
+ "@microchip/fosc-hz": "^0.1.2",
140
+ "@microchip/pin-standard": "^0.4.1",
141
+ "@microchip/run-directory": "^4.2.3",
142
+ "@microchip/scf-common": "^3.17.0",
143
+ "@microchip/scf-device": "^8.5.0",
144
+ "@microchip/scf-integration-test": "^1.0.0",
145
+ "@microchip/scf-interface": "^1.4.0",
146
+ "@microchip/scf-register-view-helper": "^2.5.0",
147
+ "lodash.filter": "^4.6.0",
148
+ "lodash.find": "^4.6.0",
149
+ "lodash.map": "^4.6.0"
150
+ },
151
+ "devDependencies": {
152
+ "@babel/core": "^7.9.6",
153
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
154
+ "@babel/preset-env": "^7.9.6",
155
+ "@babel/preset-react": "^7.9.4",
156
+ "@babel/preset-typescript": "^7.9.0",
157
+ "@mchp-mcc/pic-8bit": "5.13.1-dev.5",
158
+ "@mchp-mcc/pic-8bit-types": "5.13.1-dev.5",
159
+ "@microchip/ccl-itf": "^1.5.0",
160
+ "@microchip/initializer-main": "^0.4.0",
161
+ "@microchip/initializer-system": "^0.5.4",
162
+ "@microchip/interrupt-manager-generic": "^3.0.0",
163
+ "@microchip/interrupt-standard": "^1.0.1",
164
+ "@microchip/melody-automodule-interface": "^1.7.0",
165
+ "@microchip/pic-8bit-types": "^4.1.5",
166
+ "@microchip/run-directory": "^4.2.3",
167
+ "@microchip/scf-automodule": "^5.7.2",
168
+ "@microchip/scf-automodule-impl": "^1.9.2",
169
+ "@microchip/scf-autoview": "^3.30.0",
170
+ "@microchip/scf-project-scripts": "^1.0.0",
171
+ "@types/core-js": "^2.5.1",
172
+ "@types/enzyme": "^3.9.3",
173
+ "@types/jest": "^24.0.14",
174
+ "@types/lodash.filter": "^4.6.6",
175
+ "@types/lodash.find": "^4.6.6",
176
+ "@types/lodash.map": "^4.6.13",
177
+ "@types/node": "^12.0.10",
178
+ "@types/properties-reader": "^0.0.1",
179
+ "@types/semver": "^7.1.0",
180
+ "@typescript-eslint/eslint-plugin": "^3.2.0",
181
+ "@typescript-eslint/parser": "^3.6.0",
182
+ "babel-eslint": "^10.1.0",
183
+ "babel-loader": "^8.0.6",
184
+ "babel-plugin-named-asset-import": "^0.3.2",
185
+ "babel-preset-react-app": "^9.0.0",
186
+ "del": "^4.1.1",
187
+ "eslint": "^7.4.0",
188
+ "eslint-config-prettier": "^6.11.0",
189
+ "eslint-friendly-formatter": "^4.0.1",
190
+ "eslint-loader": "^4.0.2",
191
+ "eslint-plugin-prettier": "^3.1.3",
192
+ "eslint-plugin-react": "^7.20.0",
193
+ "fork-ts-checker-webpack-plugin": "^1.3.7",
194
+ "fs": "^0.0.1-security",
195
+ "gulp": "^4.0.2",
196
+ "gulp-changed": "^4.0.2",
197
+ "gulp-cli": "^2.2.0",
198
+ "gulp-if": "^3.0.0",
199
+ "gulp-typescript": "^5.0.1",
200
+ "hard-source-webpack-plugin": "^0.13.1",
201
+ "husky": "^4.2.4",
202
+ "is-wsl": "^2.1.0",
203
+ "jest": "^24.8.0",
204
+ "jest-html-reporter": "^2.5.0",
205
+ "jest-pnp-resolver": "^1.2.1",
206
+ "lint-staged": "^10.1.3",
207
+ "pnp-webpack-plugin": "^1.5.0",
208
+ "prettier": "^2.0.5",
209
+ "ts-jest": "^24.0.2",
210
+ "ts-pnp": "^1.1.2",
211
+ "typescript": "~4.5.5",
212
+ "webpack": "^4.34.0",
213
+ "webpack-cli": "^3.3.4",
214
+ "webpack-merge": "^4.2.2",
215
+ "webpack-stream": "^5.2.1",
216
+ "yargs": "^13.2.4"
217
+ },
218
+ "description": "- Download & Install [nodejs](https://nodejs.org/en/download/)\r - Download & Install npm\r - Setup node & npm in enviroment path",
219
+ "main": "lib/generated_module/src/index.js",
220
+ "author": ""
221
+ }