-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "@cuppilekkia/event-tracker",
"version": "1.0.2",
"description": "Browser interaction events Tracker",
"main": "dist/tracker.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js",
"lint": "eslint . --fix"
},
"keywords": [],
"author": "Antonio Coppola",
"license": "ISC",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/cuppilekkia/event-tracker.git"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"core-js": "^3.5.0",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.1",
"babel-jest": "^26.3.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-json": "^2.1.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"semantic-release": "^17.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^5.1.4"
}
}