-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.86 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
{
"name": "@cannabis-labeling-api/fetch",
"private": false,
"description": "fetch QR details from a compliant Cannabis Labeling endpoint",
"version": "0.1.4",
"homepage": "https://github.com/cannabis-labeling-api/fetch",
"author": "Leif Shackelford <[email protected]>",
"engines": {
"node": ">= 14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cannabis-labeling-api/fetch.git"
},
"bugs": {
"url": "https://github.com/cannabis-labeling-api/fetch/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/cannabis-labeling-api/fetch/blob/master/LICENSE-MIT"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test mocha --recursive --require ts-node/register \"test/**/*.ts\" --bail",
"cover": "NODE_ENV=test nyc --report-dir coverage npm t",
"docs": "jsdoc -c config/jsdoc.json -R README.md --verbose --pedantic",
"travis": "npm run build && npm run cover"
},
"Keywords": [],
"devDependencies": {
"@types/mocha": "^9",
"@types/node": "^17",
"@types/shelljs": "^0.8",
"@types/chai": "^4.3",
"chai": "^4.3",
"coveralls": "^3.1",
"jaguarjs-jsdoc": "github:dcodeIO/jaguarjs-jsdoc",
"jsdoc": "^3.6",
"mocha": "^10",
"nyc": "^15",
"shelljs": "^0.8",
"ts-node": "^10",
"typescript": "^4.7"
},
"cliDependencies": [
"jsdoc"
],
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"**/*.d.ts",
"node_modules"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"lcov"
],
"all": true
},
"directories": {
"test": "test"
},
"keywords": [
"metrc"
],
"license": "ISC"
}