-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"name": "unidays-offer-redemption-js",
"version": "1.0.4",
"description": "This is the JavaScript library for integrating with UNiDAYS for offer reporting. This is to be used for coded integrations.",
"main": "unidays-offer-tracking.js",
"scripts": {
"test": "jest",
"pack": "cpx \"src/unidays-offer-tracking.js\" dist && uglifyjs src/unidays-offer-tracking.js -o dist/unidays-offer-tracking.min.js --compress --mangle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyUNiDAYS/unidays-offer-redemption-js.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/MyUNiDAYS/unidays-offer-redemption-js/issues"
},
"homepage": "https://github.com/MyUNiDAYS/unidays-offer-redemption-js#readme",
"dependencies": {
"cpx": "^1.5.0",
"eval": "^0.1.4",
"jest": "^26.6.3",
"uglify-js": "^3.11.4"
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/__tests__/globalSetup.js"
],
"testMatch": [
"**/**/__tests__/**/*test.js"
]
}
}