-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.76 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
{
"name": "openepcis-event-sentry",
"version": "1.0.0",
"description": "Helps with detecting EPCIS event profile, defining event profile validation rules and validating EPCIS event against them.",
"main": "./dist/openepcis-event-sentry.node.js",
"browser": "./dist/openepcis-event-sentry.browser.js",
"scripts": {
"build": "rm -r dist/*; webpack --config webpack.node.config.mjs webpack.web.config.mjs --mode production",
"build:dev": "rm -r dist/*; webpack --config webpack.node.config.mjs webpack.web.config.mjs --mode development",
"format": "prettier --write '**/*.{js,json,mjs}'",
"lint": "eslint --fix --max-warnings 0",
"prepublishOnly": "npm run build && npm test",
"test": "vitest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -p false"
}
},
"lint-staged": {
"*.{js,json,mjs}": "prettier --write",
"*.js": "eslint --fix"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/openepcis/openepcis-event-sentry"
},
"keywords": [
"openepcis event sentry",
"openepcis",
"epcis",
"epc",
"gs1",
"profile events"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openepcis/openepcis-event-sentry/issues"
},
"homepage": "https://github.com/openepcis/openepcis-event-sentry#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"husky": "^6.0.0",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"secure-eval": "^0.4.1",
"vitest": "^1.5.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^8.17.1",
"cross-fetch": "^4.0.0"
}
}