-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
46 lines (46 loc) · 1.67 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
{
"name": "integration-nameOfYourIntegration",
"version": "1.0.3",
"main": "dist/XYZ-Kit.common.js",
"files": [
"dist/XYZ-Kit.common.js"
],
"scripts": {
"build": "ENVIRONMENT=production rollup --config rollup.config.js",
"build:test": "ENVIRONMENT=production rollup --config rollup.test.config.js",
"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",
"testEndToEnd": "ENVIRONMENT=testEndToEnd rollup --config rollup.config.js && open http://localhost:8082/node_modules/@mparticle/web-kit-wrapper/end-to-end-testapp/index.html && node node_modules/@mparticle/web-kit-wrapper/end-to-end-testapp/server",
"watch": "ENVIRONMENT=production rollup --config rollup.config.js -w"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@mparticle/web-kit-wrapper": "^1.0.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"mocha": "^5.2.0",
"chai": "^4.2.0",
"karma": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"rollup": "^1.15.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"shelljs": "0.8.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.1",
"should": "13.2.3",
"prettier": "^2.4.1",
"watchify": "^3.11.0"
},
"dependencies": {
"@mparticle/web-sdk": "^2.20.0"
},
"license": "Apache-2.0"
}