-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "tealium-tracker",
"version": "2.2.1",
"description": "Easily connect Tealium to your application.",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"prettier": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"test": "echo \"Coming soon!\"",
"transpile": "rimraf dist && babel src -d dist --ignore \"src/**/*.test.js\"",
"prepublish": "npm run transpile && webpack"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && npm run lint"
}
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"keywords": [
"tealium",
"tracker",
"event",
"analytics",
"utag"
],
"homepage": "https://github.com/LatitudeFinancialOSS/tealium-tracker",
"repository": {
"type": "git",
"url": "https://github.com/LatitudeFinancialOSS/tealium-tracker.git"
},
"bugs": {
"url": "https://github.com/LatitudeFinancialOSS/tealium-tracker/issues"
},
"files": [
"dist",
"src"
],
"license": "MIT"
}