forked from google/data-layer-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 KB
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
75
76
77
{
"name": "@netmatch/data-layer-helper",
"description": "A utility to help many vendors manage the data layer of an application.",
"version": "1.0.0-rc.2",
"scripts": {
"test": "run-s test:lint test:unit",
"test:lint": "eslint .",
"test:unit": "karma start karma.conf.js --single-run",
"lint:fix": "eslint . --fix",
"karma": "karma start karma.conf.js"
},
"module": "src/index.js",
"files": [
"/src"
],
"//": "Contributors are listed in alphabetical order by last name. Add yourself!",
"contributors": [
"Sam Calhoun <calhounsm@google.com>",
"Colin Duivis <c.duivis@netmatch.nl>",
"KJ Galvan <kaityagalvan@gmail.com>",
"Brian Kuhn <bkuhn@google.com>",
"Alex Li <7alex7li@gmail.com>",
"Alex Nau <arnau@google.com>",
"Eugene Sambursky <ievgen@google.com>",
"Pedro Silva <pedro.hs.silva0111@gmail.com>",
"Dustin Urbaniec <durbanie@google.com>"
],
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/runtime": "^7.12.5",
"babel-loader": "^8.2.2",
"core-js": "^3.8.2",
"eslint": "~7.3.1",
"eslint-config-closure-es6": "~0.1.1",
"eslint-config-google": "~0.14.0",
"eslint-plugin-jasmine": "~4.1.1",
"fast-async": "^6.3.8",
"jasmine": "~3.5.0",
"jasmine-core": "~3.5.0",
"jquery": "^3.5.1",
"karma": "~5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-jasmine": "~3.3.1",
"karma-jasmine-html-reporter": "~1.5.4",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"karma-teamcity-reporter": "^1.1.0",
"karma-webpack": "^4.0.2",
"npm-run-all": "^4.1.5",
"webpack": "^4.44.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/NetMatch/data-layer-helper"
},
"directories": {
"lib": "./src",
"bin": "./dist",
"test": "./test"
},
"keywords": [
"javascript",
"tool",
"utility",
"queue",
"message",
"data",
"layer",
"datalayer"
],
"license": "Apache-2.0"
}