-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.62 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
{
"name": "@paychex/collector-batch",
"version": "3.0.2",
"description": "Provides a customizable batching collector for use with a @paychex/core Tracker.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"browser": "dist/umd/paychex.collector-batch.js",
"types": "types/index.d.ts",
"files": [
"dist",
"docs",
"types"
],
"repository": {
"type": "git",
"url": "git://github.com/paychex/collector-batch.git"
},
"bugs": {
"url": "https://github.com/paychex/collector-batch/issues"
},
"homepage": "https://paychex.github.io/collector-batch/",
"scripts": {
"build": "rollup -c",
"c8": "c8 --clean=true --exclude=spec --reporter=html",
"clean": "rimraf dist docs coverage types",
"coverage": "npm run c8 -- mocha",
"docs": "typedoc",
"preversion": "npm run clean && npm run verify",
"prepublishOnly": "npm run version",
"test": "mocha",
"types": "tsc --declaration --emitDeclarationOnly --declarationDir types",
"verify": "npm run c8 -- --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 mocha",
"version": "npm run docs && npm run build && npm run types && git add -A"
},
"keywords": [
"paychex",
"google analytics",
"batch",
"patch",
"diff",
"collector",
"tracking"
],
"license": "Apache-2.0",
"author": "Paychex, Inc.",
"contributors": [
{
"name": "Dan Barnes",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 13.2.0",
"npm": ">= 7.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.0",
"c8": "^7.12.0",
"expect": "^26.0.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.39.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"fast-json-patch": "^3.0.0-1"
},
"peerDependencies": {
"@paychex/core": ">= 3.0.0",
"lodash": ">= 4.17.21"
}
}