-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
92 lines (92 loc) · 3.08 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
{
"name": "keen-analysis",
"version": "3.7.0",
"description": "A JavaScript client for Keen.IO",
"main": "dist/node/keen-analysis.js",
"browser": "dist/keen-analysis.js",
"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 && npm run build:modules && npm run build:modules:node",
"build:node": "TARGET=node NODE_ENV=production webpack -p",
"build:modules": "NODE_ENV=production webpack -p --config webpack.modules.config.js",
"build:modules:node": "NODE_ENV=production TARGET=node webpack -p --config webpack.modules.config.js",
"profile": "webpack --profile --json > stats.json",
"analyze": "webpack-bundle-analyzer stats.json /dist",
"preversion": "npm run build && npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish",
"demo": "npm run build:node && node ./test/demo/index.node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keen/keen-analysis.js.git"
},
"author": "Keen IO <[email protected]>",
"homepage": "https://keen.io",
"contributors": [
"Dustin Larimer <[email protected]> (https://github.com/dustinlarimer)",
"Adam Kasprowicz <[email protected]> (https://github.com/adamkasprowicz)",
"Dariusz Łacheta <[email protected]> (https://github.com/dariuszlacheta)"
],
"keywords": [
"Analytics",
"Analysis",
"Conversion",
"Query",
"Stats",
"Client",
"Min",
"Max",
"Count",
"Percentile",
"Average",
"Median",
"Keen",
"Keen Query"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/keen/keen-analysis.js/issues"
},
"dependencies": {
"crossfilter2": "^1.4.6",
"csvtojson": "^2.0.8",
"keen-core": "^0.2.0",
"moment": "^2.22.2",
"promise-polyfill": "^8.0.0",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"abortcontroller-polyfill": "^1.1.9",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"del": "^2.1.0",
"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",
"fake-indexeddb": "^2.0.4",
"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",
"requirejs": "^2.1.22",
"through2": "^2.0.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"
}
}