-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1 KB
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
{
"name": "metrics-script",
"version": "1.2.2",
"description": "a small script to capture events and then send them to our server",
"main": "index.js",
"scripts": {
"test": "jshint ./index.js ./src/* && browserify test/*.js -t es6ify | tape-run -b firefox",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "http://github.com/honeinc/metrics"
},
"keywords": [
"event",
"metric",
"tracking",
"ajax"
],
"author": "Jacob Lowe",
"license": "MIT",
"bugs": {
"url": "https://github.com/honeinc/metrics/issues"
},
"homepage": "https://github.com/honeinc/metrics",
"devDependencies": {
"browserify": "^6.3.2",
"es6ify": "^1.5.1",
"faucet": "0.0.1",
"gulp": "^3.8.10",
"gulp-browserify": "^0.5.0",
"gulp-debug": "^1.0.1",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"jshint": "^2.5.10",
"tape": "^3.0.3",
"tape-run": "^0.3.0"
},
"dependencies": {
"ua-parser-js": "^0.7.3",
"xhr": "^1.17.0"
}
}