-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "talculator",
"version": "0.0.1",
"description": "A calculator written in typescript, following the principles of clean architecture",
"main": "index.ts",
"dependencies": {
"gui": "^0.6.3",
"tsc-watch": "^2.1.2"
},
"devDependencies": {
"@intellihr/standard-tslint": "^2.1.1",
"@types/node": "^11.13.2",
"@types/tape": "^4.2.33",
"faucet": "0.0.1",
"nodemon": "^1.18.11",
"tape": "^4.10.1",
"ts-node": "^8.0.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.2"
},
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "ts-node node_modules/tape/bin/tape src/**/**.test.ts | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prashkup/talculator.git"
},
"keywords": [
"calculator",
"simple",
"clean-architecture"
],
"author": "prashkup",
"license": "MIT",
"bugs": {
"url": "https://github.com/prashkup/talculator/issues"
},
"homepage": "https://github.com/prashkup/talculator#readme"
}