-
Notifications
You must be signed in to change notification settings - Fork 312
/
package.json
65 lines (65 loc) · 2.01 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
{
"name": "mixpanel-browser",
"version": "2.55.1",
"description": "The official Mixpanel JavaScript browser client library",
"main": "dist/mixpanel.cjs.js",
"module": "dist/mixpanel.module.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "./build.sh",
"build-dist": "DIST=1 ./build.sh",
"build-full": "FULL=1 ./build.sh",
"build-test-polyfill": "webpack tests/vendor/core-js-polyfills.src.js tests/vendor/core-js-polyfills.js",
"dox": "node doc/build-docs.js",
"dox-publish": "rdme docs:single doc/readme.io/javascript-full-api-reference.md --key=$RDME_API_KEY --version=$RDME_DOC_VERSION",
"integration_test": "echo 'Browse to localhost:3000/tests' && node testServer.js",
"lint": "eslint ./src",
"prepublishOnly": "npm run build-dist",
"start": "pushd examples; python -m SimpleHTTPServer; popd",
"test": "npm run lint && npm run unit-test",
"unit-test": "BABEL_ENV=test mocha --require babel-core/register tests/unit/*.js",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/mixpanel/mixpanel-js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mixpanel/mixpanel-js/issues"
},
"homepage": "https://github.com/mixpanel/mixpanel-js",
"devDependencies": {
"@rollup/plugin-node-resolve": "15.2.3",
"babel": "6.5.2",
"babel-core": "6.7.2",
"babel-preset-es2015": "6.6.0",
"babelify": "6.1.2",
"browserify": "10.2.4",
"chai": "4.0.0",
"cookie-parser": "1.3.4",
"core-js": "3.6.5",
"dox": "0.9.0",
"eslint": "4.18.2",
"express": "4.12.2",
"jsdom": "16.5.0",
"jsdom-global": "3.0.2",
"localStorage": "1.0.4",
"lodash": "4.17.21",
"mocha": "7.1.1",
"morgan": "1.9.1",
"rdme": "7.5.0",
"request": "2.88.0",
"rollup": "2.79.1",
"rollup-plugin-esbuild": "4.10.3",
"sinon": "8.1.1",
"sinon-chai": "3.5.0",
"webpack": "1.12.2"
},
"dependencies": {
"rrweb": "2.0.0-alpha.13"
}
}