-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "@kev_nz/async-tools",
"version": "1.3.0",
"description": "Async tools - a collection of utility functions for working with async/await code.",
"main": "src/index.js",
"files": [
"/src"
],
"scripts": {
"test": "jest ./src/__tests__/*.test.js",
"test:ci": "jest ./src/__tests__/*.test.js --reporters=jest-junit",
"cover": "jest ./src/__tests__/*.test.js --coverage",
"coverage": "jest ./src/__tests__/*.test.js --coverage --coverageReporters=text-lcov | coveralls",
"predocs": "jest ./src/__tests__/*.test.js --coverage --coverageDirectory=./dist/coverage",
"docs": "publisher",
"jsdox": "jsdoc ./src/*.js --configure .jsdoc.json --verbose",
"preversion": "npm test",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npm run docs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Kevnz/async-tools.git"
},
"keywords": [
"async",
"await",
"utils",
"functional",
"composition",
"functional composition",
"asynchronous",
"async tools",
"promises",
"helpers"
],
"author": "Kevin Isom <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kevnz/async-tools/issues"
},
"homepage": "https://kevinisom.info/async-tools",
"devDependencies": {
"@kev_nz/eslint-config": "^3.2.1",
"@kev_nz/publisher": "^3.0.1",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"jest": "^24.6.0",
"jest-junit": "^10.0.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.0",
"minami": "^1.2.3"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "./reports",
"outputName": "junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
}
}