This repository has been archived by the owner on Feb 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
84 lines (84 loc) · 1.73 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
{
"name": "amplitude",
"version": "4.0.0",
"description": "A node wrapper for Amplitude analytics http api",
"author": "Blade Barringer <blade@crookedneighbor.com>",
"files": [
"amplitude.js"
],
"contributors": [
{
"name": "Erki Esken",
"email": "erki@deekit.net",
"url": "http://deekit.net/"
},
{
"name": "Matthew Keesan",
"email": "hi@keesan.net",
"url": "http://keesan.net"
},
{
"name": "Geoff Dutton",
"email": "g.dutton@gmail.com"
},
{
"name": "Matt Pardee",
"email": "matt.pardee@gmail.com"
},
{
"name": "Chase Seibert",
"email": "chase.seibert@gmail.com",
"url": "http://chase-seibert.github.io/blog/"
}
],
"scripts": {
"contributors": "node tasks/generate-contributors-list",
"lint": "standard *.js test/*.js | snazzy",
"test": "npm run lint && mocha"
},
"main": "amplitude.js",
"repository": {
"type": "git",
"url": "https://github.com/crookedneighbor/amplitude"
},
"bugs": {
"url": "https://github.com/crookedneighbor/amplitude/issues"
},
"keywords": [
"analytics",
"amplitude"
],
"dependencies": {
"superagent": "^5.2.1"
},
"devDependencies": {
"chai": "^4.1.0",
"ecmascript-version-detector": "^1.0.3",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"nock": "^11.7.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"license": "ISC",
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"sandbox"
]
},
"greenkeeper": {
"ignore": [
"nock"
]
}
}