-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (52 loc) · 2.06 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
{
"name": "@mparticle/web-bing-ads-kit",
"version": "2.1.0",
"author": "mParticle Developers <[email protected]> (https://www.mparticle.com)",
"description": "mParticle integration sdk for Bing Ads",
"main": "dist/BingAdsEventForwarder.common.js",
"browser": "dist/BingAdsEventForwarder.common.js",
"files": [
"dist/BingAdsEventForwarder.common.js"
],
"repository": "https://github.com/mparticle-integrations/mparticle-javascript-integration-bingads",
"scripts": {
"build": "ENVIRONMENT=production rollup --config rollup.config.js",
"build:test": "ENVIRONMENT=production rollup --config rollup.test.config.js",
"lint": "eslint src/ test/src/",
"lint:fix": "eslint src/ test/src/ --fix",
"test": "npm run build && npm run build:test && DEBUG=false karma start test/karma.config.js",
"test:debug": "npm run build && npm run build:test && DEBUG=true karma start test/karma.config.js",
"watch": "ENVIRONMENT=production rollup --config rollup.config.js -w",
"watch:tests": "ENVIRONMENT=production rollup --config rollup.test.config.js -w"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"chai": "^4.2.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "3.4.1",
"karma": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"mocha": "^2.5.3",
"prettier": "1.18.2",
"rollup": "^1.13.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"shelljs": "^0.8.4",
"should": "^7.1.0",
"watchify": "^3.11.1"
},
"dependencies": {
"isobject": "^4.0.0",
"@mparticle/web-sdk": "^2.11.1"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0"
}