forked from amplitude/Amplitude-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.45 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.45 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
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
{
"name": "datadive-js",
"author": "Datadive <support@datadive.ai>",
"version": "1.3.0",
"license": "MIT",
"description": "Javascript library for Datadive Analytics",
"keywords": [
"analytics",
"datadive"
],
"repository": {
"type": "git",
"url": "https://github.com/datadive-ai/dave-JavaScript.git"
},
"main": "datadive.umd.js",
"react-native": "datadive.native.js",
"dependencies": {
"@amplitude/ua-parser-js": "0.7.24",
"blueimp-md5": "^2.10.0",
"query-string": "5"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"chai": "^4.1.2",
"date-fns": "^1.30.1",
"express": "^4.16.2",
"fs-extra": "^4.0.2",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^6.0.1",
"jshint": "^2.9.6",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sauce-launcher": "^2.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"mocha": "^4.0.1",
"prettier": "^2.1.1",
"requirejs": "^2.3.6",
"rollup": "^1.4.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-legacy": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"semantic-release": "^17.1.1",
"sinon": "^7.0.0",
"uglify-js": "^2.0.0"
},
"scripts": {
"test": "make test",
"dev": "node test/browser/server.js",
"docs:install": "cd website/ && yarn install",
"docs:generate-jsdoc": "node website/generate-jsdoc",
"docs:start": "cd website/ && yarn start",
"docs:build": "cd website/ && yarn build",
"docs:serve": "cd website/ && yarn serve",
"docs:deploy": "cd website/ && yarn deploy",
"docs:swizzle": "cd website/ && yarn swizzle",
"semantic-release": "semantic-release"
},
"bugs": {
"url": "https://github.com/datadive-ai/dave-JavaScript/issues"
},
"homepage": "https://github.com/datadive-ai/dave-JavaScript#readme",
"directories": {
"test": "test"
}
}