-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "auth0-analytics",
"version": "1.3.1",
"description": "",
"main": "src/index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:selenium":
"sh './tests/scripts/pre_test.sh' && mocha ./tests/index.js && sh './tests/scripts/post_test.sh'",
"coverage": "jest --coverage",
"build": "NODE_ENV=production webpack -p",
"start": "webpack-dev-server"
},
"repository": "git+https://github.com/auth0/auth0-analytics.js.git",
"author": "Auth0, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/auth0-analytics.js/issues"
},
"homepage": "https://github.com/auth0/auth0-analytics.js#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.2",
"chai": "^4.1.1",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"jest": "^20.0.4",
"mocha": "^3.5.0",
"selenium-webdriver": "^3.5.0",
"serve": "^6.3.1",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"auth0-tag-manager": "2.0.5",
"babel-polyfill": "^6.23.0"
}
}