-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.74 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "epcis2.js",
"version": "2.7.2",
"description": "Javascript SDK for the EPCIS 2.0 standard",
"main": "./dist/epcis2.node.js",
"browser": "./dist/epcis2.browser.js",
"scripts": {
"lint": "eslint --fix --max-warnings 0 --ext .js .",
"format": "./node_modules/.bin/prettier --write '**/*.{js,json,md,yaml,yml}'",
"build": "rm -r dist/*; tsc; webpack --config webpack.config.js --mode production",
"build:dev": "rm -r dist/*; tsc; webpack --config webpack.config.js --mode development",
"test": "nyc ./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register './test/**/*.spec.js'",
"prepublishOnly": "npm run build && npm test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -p false"
}
},
"lint-staged": {
"*.{js,json,md,yaml,yml}": "prettier --write",
"*.js": "eslint --fix"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"repository": {
"type": "git",
"url": "https://github.com/evrythng/epcis2.js"
},
"keywords": [
"epcis2.js",
"epcis2",
"epcis",
"epc",
"supply chain",
"gs1",
"traceability",
"track and trace",
"standard"
],
"author": "EVRYTHNG Ltd. <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/evrythng/epcis2.js#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.20",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.13.17",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"fetch-mock": "^9.11.0",
"husky": "^6.0.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"typescript": "^4.9.4",
"webpack": "^5.88.2",
"webpack-cli": "^4.6.0",
"wnpm-ci": "^7.0.100"
},
"dependencies": {
"@types/node": "^18.11.18",
"ajv": "^7.1.0",
"ajv-formats": "^1.5.1",
"cross-fetch": "^3.1.4",
"crypto-js": "^3.3.0",
"digital-link.js": "^1.3.0",
"epc-tds": "^1.3.0",
"fs": "0.0.1-security",
"is-plain-object": "^5.0.0",
"querystring": "^0.2.1",
"superagent": "^6.1.0"
}
}