-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "moesif-browser-js",
"version": "1.8.13",
"description": "Moesif AJAX Client Javascript. This is designed to log and capture AJAX REST API calls from web apps for error analysis in Moesif.",
"main": "build/moesif.cjs.js",
"directories": {
"test": "tests"
},
"scripts": {
"build": "./build.sh",
"start": "pushd examples; python -m http.server; popd",
"test": "BABEL_ENV=test ./node_modules/mocha/bin/mocha -r mock-local-storage --compilers js:babel-core/register tests/unit/*.js",
"integration_test": "echo 'Browse to localhost:3000/tests' && node testServer.js",
"lint": "./node_modules/eslint/bin/eslint.js ./src",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/moesif/moesif-browser-js.git"
},
"author": {
"name": "Moesif",
"email": "[email protected]",
"url": "https://www.moesif.com"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/moesif/moesif-browser-js/issues"
},
"homepage": "https://www.moesif.com",
"devDependencies": {
"@babel/core": "^7.2.2",
"acorn": "^6.4.1",
"babel": "^6.5.2",
"babel-core": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^3.5.0",
"cookie-parser": "^1.3.4",
"eslint": "^6.8.0",
"express": "^4.12.2",
"jsdom": "^8.1.0",
"mocha": "^5.2.0",
"mocha-jsdom": "^1.1.0",
"mock-local-storage": "^1.0.2",
"morgan": "^1.9.1",
"node-localstorage": "^1.3.0",
"precommit-hook": "^3.0.0",
"rollup": "^0.25.4",
"rollup-plugin-npm": "^1.4.0",
"sinon": "^1.17.3",
"webpack": "^1.12.2"
},
"pre-commit": [
"lint",
"test"
]
}