-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "textpresentation",
"version": "1.4.5",
"description": "Text presention program on command line",
"main": "dist/tpt.js",
"scripts": {
"test": "yarn build && yarn jest",
"build": "tsc",
"run": "tsc && node ./dist/tpt.js"
},
"repository": "https://github.com/HARDY8118/tpt.git",
"keywords": [
"tpt",
"presentation"
],
"author": "Harshit Vishnoi",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/HARDY8118/tpt/issues"
},
"homepage": "https://github.com/HARDY8118/tpt#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/figlet": "^1.5.4",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"babel-jest": "^27.2.5",
"jest": "^27.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"cli-highlight": "^2.1.11",
"colorts": "^0.1.63",
"figlet": "^1.5.2",
"validate": "^5.2.0"
},
"bin": {
"tpt": "./dist/tpt.js"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"package.json"
]
}