-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "sales-tax",
"version": "1.0.0",
"description": "sales tax calculator built using TypeScript",
"main": "app.ts",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers ts:ts-node/register ./test/*.spec.ts",
"app": "./node_modules/ts-node/dist/bin.js app.ts",
"lint": "tslint -c tslint.json app.ts src/*.ts test/*.ts",
"single-file-test": "./node_modules/.bin/mocha --compilers ts:ts-node/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenanamigos/sales-tax.git"
},
"author": "keenanamigos",
"license": "ISC",
"bugs": {
"url": "https://github.com/keenanamigos/sales-tax/issues"
},
"homepage": "https://github.com/keenanamigos/sales-tax#readme",
"dependencies": {
"chalk": "^2.3.0",
"ts-node": "^3.3.0",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1"
}
}