forked from google/data-layer-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "data-layer-helper",
"description": "A utility to help many vendors manage the data layer of an application.",
"version": "1.0.0",
"scripts": {
"start": "grunt",
"build-debug": "grunt build-debug",
"test": "grunt test",
"unit": "karma start",
"integration": "karma start test/integration/karma.conf.js"
},
"main": "dist/data-layer-helper.js",
"files": [
"/dist",
"/src"
],
"//": "Contributors are listed in alphabetical order by last name. Add yourself!",
"contributors": [
"Sam Calhoun <[email protected]>",
"KJ Galvan <[email protected]>",
"Brian Kuhn <[email protected]>",
"Alex Li <[email protected]>",
"Alex Nau <[email protected]>",
"Eugene Sambursky <[email protected]>",
"Pedro Silva <[email protected]>",
"Dustin Urbaniec <[email protected]>"
],
"devDependencies": {
"eslint": "~7.3.1",
"eslint-config-closure-es6": "~0.1.1",
"eslint-config-google": "~0.14.0",
"eslint-plugin-jasmine": "~4.1.1",
"grunt": "~1.5.3",
"grunt-closure-tools": "~1.0.0",
"grunt-karma": "~4.0.0",
"jasmine": "~3.5.0",
"jasmine-core": "~3.5.0",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-closure": "~0.1.3",
"karma-detect-browsers": "~2.3.3",
"karma-firefox-launcher": "~1.3.0",
"karma-googmodule-preprocessor": "~1.0.1",
"karma-ie-launcher": "~1.0.0",
"karma-jasmine": "~3.3.1",
"karma-jasmine-html-reporter": "~1.5.4",
"karma-safari-launcher": "~1.0.0",
"karma-spec-reporter": "~0.0.32"
},
"dependencies": {
"google-closure-compiler": "~20200719.0.0",
"google-closure-library": "~20200628.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/google/data-layer-helper"
},
"directories": {
"lib": "./src",
"bin": "./dist",
"test": "./test"
},
"keywords": [
"javascript",
"tool",
"utility",
"queue",
"message",
"data",
"layer",
"datalayer"
],
"license": "Apache-2.0"
}