forked from pyymenta/spacecraft-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 859 Bytes
/
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
{
"name": "spacecraft-cli",
"version": "0.0.1",
"description": "A simple CLI Project to solve the Spacecraft problem with typescript",
"main": "dist/main.js",
"author": "Lucas Pimenta",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.4.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pyymenta/spacecraft-cli.git"
},
"keywords": [
"typescript",
"spacecraft",
"help-wanted",
"digitalocean",
"beginner-friendly",
"hacktoberfest",
"hacktoberfest2020",
"javascript",
"cli",
"challenge",
"jest"
],
"scripts": {
"start": "node dist/main.js",
"build": "tsc --build .tsconfig.json",
"test": "jest --no-cache"
},
"dependencies": {
"readline": "^1.3.0"
}
}