-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.42 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": "promostandards-sdk-js",
"version": "0.1.11",
"engines": {
"node": ">=16.x"
},
"description": "PromoStandards JavaScript SDK",
"homepage": "https://github.com/manishrc/promostandards-sdk-js/",
"repository": {
"url": "git+https://github.com/manishrc/promostandards-sdk-js.git",
"type": "git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": "Manish Chiniwalar <hi@manishrc.com> (https://manishrc.com)",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@snyk/protect": "^1.1291.0",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.10",
"dotenv": "^6.1.0",
"eslint": "^9.2.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"scripts": {
"test": "jest",
"build": "npm run clean && tsc",
"clean": "rm -rf build && rm -rf docs",
"watch-source": "tsc -w",
"code-coverage": "jest --coverage",
"watch-tests": "jest --watch",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags"
},
"dependencies": {
"axios": "^1.6.8",
"pug": "^3.0.2",
"snyk": "^1.1291.0",
"xml2js": "^0.6.2"
},
"snyk": true,
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}