forked from mixpanel/mixpanel-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "mixpanel-browser",
"version": "2.22.4",
"description": "The official Mixpanel JavaScript browser client library",
"main": "build/mixpanel.cjs.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "./build.sh",
"integration_test": "echo 'Browse to localhost:3000/tests' && node testServer.js",
"lint": "./node_modules/eslint/bin/eslint.js ./src",
"start": "pushd examples; python -m SimpleHTTPServer; popd",
"test": "npm run lint && npm run unit-test",
"unit-test": "BABEL_ENV=test ./node_modules/mocha/bin/mocha --compilers js: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": {
"babel": "^6.5.2",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"chai": "^3.5.0",
"cookie-parser": "^1.3.4",
"eslint": "^2.4.0",
"express": "^4.12.2",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"mocha": "^2.4.5",
"morgan": "^1.5.2",
"node-localstorage": "^1.3.0",
"precommit-hook": "^3.0.0",
"rollup": "^0.25.8",
"rollup-plugin-npm": "^1.4.0",
"sinon": "^4.4.2",
"webpack": "^1.12.2"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}