-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 852 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
{
"name": "project-euler",
"version": "0.0.1",
"description": "Project Euler solutions",
"main": "dist/index.js",
"bin": {
"project-euler": "./dist/index.js"
},
"scripts": {
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcgarygray/project-euler.git"
},
"author": "Marc G. Gray",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcgarygray/project-euler/issues"
},
"homepage": "https://github.com/marcgarygray/project-euler#readme",
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/node": "^18.11.7",
"@types/prompt-sync": "^4.2.0",
"chalk": "^4.1.2",
"nodemon": "^2.0.20",
"prompt-sync": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}