-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "@welcomesoftware/cmp-sdk",
"version": "1.0.5",
"description": "Welcome NodeJS sdk",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest --watchAll --coverage",
"CI-test": "jest --silent --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/newscred/Welcome-Nodejs-SDK.git"
},
"keywords": [
"welcome",
"welcomesoftware",
"optimizely",
"optimizely cmp"
],
"author": "Nazmul Ahsan",
"license": "ISC",
"bugs": {
"url": "https://github.com/newscred/Welcome-Nodejs-SDK/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/newscred/Welcome-Nodejs-SDK#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.8.5",
"jest": "^29.3.1",
"nock": "^13.2.9",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"form-data": "^4.0.0"
}
}