-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.26 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
54
55
56
57
58
59
60
61
62
{
"name": "node-sens",
"version": "1.3.0",
"description": "Simple & Easy Notification Service client in NAVER CLOUD PLATFORM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prebuild": "rm -rf dist",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bumkeyy/node-sens.git"
},
"author": "bumkeyy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bumkeyy/node-sens/issues"
},
"homepage": "https://github.com/Bumkeyy/node-sens#readme",
"devDependencies": {
"@types/jest": "^26.0.8",
"coveralls": "^3.1.0",
"istanbul": "^0.4.5",
"jest": "^26.2.2",
"standard-version": "^9.0.0",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"dependencies": {
"axios": "^0.21.1",
"crypto": "^1.0.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"keywords": [
"http",
"sms",
"naver",
"ncp",
"platform",
"client",
"node"
]
}