This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
generated from holvonix-open/hx-node-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"name": "paginate-generator",
"version": "1.2.7",
"description": "An async generator facade for paginated APIs",
"repository": {
"type": "git",
"url": "https://github.com/holvonix-open/paginate-generator.git"
},
"keywords": [
"paginate",
"pagination",
"generator",
"async",
"iterator",
"promise"
],
"engines": {
"node": "^10.0.0",
"yarn": "^1.0.0"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"LICENSE",
"NOTICE",
"README.md"
],
"nyc": {
"cache": false,
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"all": true
},
"author": "Holvonix LLC",
"license": "Apache-2.0",
"private": false,
"scripts": {
"t": "yarn fix && yarn test --grep='#slow' --invert",
"cleantests": "rm -rf *.lcov .nyc_output coverage",
"clean": "gts clean",
"start": "node index.js",
"debug": "node --inspect index.js",
"cleanstart": "yarn clean; yarn start",
"test": "nyc --reporter=json --reporter=lcov --reporter=text ts-mocha -p ./tsconfig.json 'test/**/*.ts'",
"test-coverage": "yarn clean && yarn test && yarn report-coverage && yarn test-built",
"test-built": "yarn compile && mocha 'build/test/**/*.js'",
"report-coverage": "nyc report --reporter=json && codecov -F unit -f coverage/*.json",
"lint": "yarn fix && yarn run check",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "yarn clean && yarn run check && yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check",
"preversion": "yarn test",
"semantic-release": "semantic-release"
},
"release": {
"extends": "@holvonix-open/release-config-js"
},
"devDependencies": {
"@holvonix-open/release-config-js": "^1.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^12.6.1",
"codecov": "^3.6.1",
"gts": "^1.1.2",
"mocha": "^6.1.4",
"nyc": "^15.0.0",
"ts-mocha": "^6.0.0",
"typescript": "~3.7.2"
}
}