-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.01 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": "openbuilder-node",
"version": "0.3.0",
"description": "",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "distrue",
"url": "https://distrue.github.io"
},
"main": "dist/index.js",
"dependencies": {},
"keywords": [
"kakao",
"openbuilder",
"chatbot"
],
"repository": {
"type": "git",
"url": "https://github.com/distrue/openbuilder-node.git"
},
"files": [
"dist",
"lib"
],
"devDependencies": {
"@types/jest": "^25.2.3",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^4.0.5"
},
"scripts": {
"build": "tsc ./lib/index.ts --declaration -outDir ./dist",
"test": "jest",
"deploy": "npm run build && npm publish"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
},
"types": "dist/index.d.ts"
}