-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 854 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
{
"name": "node-fib-test",
"version": "1.0.0",
"description": "Code test that deals with user input, timers and large fibonacci numbers",
"main": "main.js",
"scripts": {
"tsc:watch": "tsc -w",
"tsc:build": "tsc",
"serve": "nodemon --inspect --no-stdin --watch dist/ -d 1 ./dist/main.js",
"start": "node ./dist/main.js",
"test": "jest"
},
"keywords": [
"node",
"fibonacci",
"typescript",
"readline",
"async"
],
"author": "Luke Muller",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"@types/validator": "^10.11.3",
"jest": "^24.9.0",
"jest-mock-console": "^1.0.0",
"nodemon": "^1.19.3",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"dependencies": {
"validator": "^11.1.0"
}
}