-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "datamatrix-decoder",
"version": "1.1.3",
"description": "Decoder for medical datamatrix",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExactCure/datamatrix-decoder.git"
},
"keywords": [
"datamatrix",
"medicines",
"decoder",
"medical",
"datamatrix-decoder",
"datamatrix-decoder-nodejs"
],
"author": "Léo Hubert <l.hubert@exactcure.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExactCure/datamatrix-decoder/issues"
},
"homepage": "https://github.com/ExactCure/datamatrix-decoder#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"typescript": "^4.3.5"
},
"dependencies": {
"ts-node": "^10.2.0"
}
}