-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
{
"name": "@opengovsg/formsg-sdk",
"version": "0.16.1",
"repository": {
"type": "git",
"url": "https://github.com/opengovsg/formsg-javascript-sdk.git"
},
"description": "Node.js SDK for integrating with FormSG",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "NODE_OPTIONS=\"--max-old-space-size=8192\" jest",
"test-ci": "jest --coverage",
"test-watch": "jest --watch",
"build": "tsc",
"prepare": "npm run build",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"keywords": [
"formsg",
"webhook",
"decrypt"
],
"author": "Open Government Products (FormSG)",
"license": "MIT",
"dependencies": {
"axios": "^1.6.4",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^29.5.8",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"auto-changelog": "^2.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-typesafe": "^0.5.2",
"jest": "^29.7.0",
"jest-mock-axios": "^4.7.3",
"ts-jest": "^29.1.1",
"typescript": "^4.9.5"
}
}