forked from crookedneighbor/amplitude
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
124 lines (124 loc) · 2.88 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "amplitude",
"version": "6.0.0",
"description": "A node wrapper for Amplitude analytics http api",
"author": "Blade Barringer <[email protected]>",
"main": "entry.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"entry.js"
],
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"contributors": [
{
"name": "Erki Esken",
"email": "[email protected]",
"url": "http://deekit.net/"
},
{
"name": "Matthew Keesan",
"email": "[email protected]",
"url": "http://keesan.net"
},
{
"name": "Geoff Dutton",
"email": "[email protected]",
"url": "https://github.com/geoffdutton"
},
{
"name": "Matt Pardee",
"email": "[email protected]"
},
{
"name": "Chase Seibert",
"email": "[email protected]",
"url": "http://chase-seibert.github.io/blog/"
},
{
"name": "filip",
"email": "[email protected]",
"url": "https://github.com/cymruu"
}
],
"scripts": {
"build": "rm -rf dist && tsc",
"contributors": "node tasks/generate-contributors-list",
"coverage": "codecov",
"lint": "eslint --ext .js,.ts .",
"prerelease": "npm version prerelease --preid=next && npm publish --tag next",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"test": "npm run lint && nyc --reporter=lcov --reporter=text mocha",
"tdd": "mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/geoffdutton/amplitude"
},
"bugs": {
"url": "https://github.com/geoffdutton/amplitude/issues"
},
"keywords": [
"analytics",
"amplitude"
],
"dependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/eslint": "^8.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/sinon": "^10.0.11",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chai": "^4.3.6",
"codecov": "^3.8.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"lodash": "^4.17.21",
"mocha": "^9.2.0",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"license": "ISC",
"greenkeeper": {
"ignore": [
"nock"
]
},
"mocha": {
"colors": true,
"reporter": "spec",
"timeout": 8000,
"check-leaks": true,
"recursive": true,
"require": "ts-node/register",
"extension": [
"ts",
"js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}