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