-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
103 lines (103 loc) · 3.36 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
{
"name": "keen-tracking",
"version": "5.0.1",
"description": "Track events - custom user actions, clicks, pageviews, purchases.",
"main": "dist/node/keen-tracking.js",
"browser": "dist/keen-tracking.js",
"repository": {
"type": "git",
"url": "https://github.com/keen/keen-tracking.js.git"
},
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"test": "NODE_ENV=test jest && npm run test:node",
"test:node": "NODE_ENV=test TEST_ENV=node jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:node:watch": "NODE_ENV=test TEST_ENV=node jest --watch",
"build": "NODE_ENV=production webpack -p && NODE_ENV=production OPTIMIZE_MINIMIZE=1 webpack -p && npm run build:node",
"build:node": "TARGET=node NODE_ENV=production webpack -p",
"profile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json /dist",
"preversion": "npm run build:node && npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"demo": "node ./test/demo/index.node.js"
},
"bugs": "https://github.com/keen/keen-tracking.js/issues",
"author": "Keen IO <team@keen.io> (https://keen.io/)",
"homepage": "https://keen.io",
"keywords": [
"Tracking",
"Tracker",
"Event Tracker",
"Event tracking",
"Track events",
"Page tracking",
"User tracking",
"Analytics event tracking",
"Analytics events",
"Analytics tracking",
"Custom events",
"Analytics",
"Stats",
"Statistics",
"Monitoring",
"Metrics",
"Pageviews",
"Segmentation",
"Funnel",
"Conversion",
"Log",
"Logger",
"Logging",
"Javascript events",
"Universal tracking",
"Click analytics"
],
"contributors": [
"Dustin Larimer <dustin@keen.io> (https://github.com/dustinlarimer)",
"Eric Anderson <eric@keen.io> (https://github.com/aroc)",
"Joe Wegner <joe@keen.io> (http://www.wegnerdesign.com)",
"Alex Kleissner <alex@keen.io> (https://github.com/hex337)",
"Adam Kasprowicz <adam.kasprowicz@keen.io> (https://github.com/adamkasprowicz)",
"Dariusz Łacheta <dariusz.lacheta@keen.io> (https://github.com/dariuszlacheta)"
],
"license": "MIT",
"dependencies": {
"component-emitter": "^1.2.0",
"js-cookie": "2.1.0",
"keen-core": "^0.1.3",
"promise-polyfill": "^8.0.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"jest-fetch-mock": "^1.6.5",
"merge": "^1.2.1",
"nock": "^9.2.6",
"regenerator-runtime": "^0.11.1",
"replace-in-file": "^3.4.0",
"url-parse": "^1.4.3",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.14",
"xhr-mock": "^2.3.2"
}
}