-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "serapay",
"version": "1.0.0",
"description": "Commandline tool that computes commission fees from cash transactions provided in a .json file",
"main": "./dist/serapaycli.js",
"types": "./dist/serapaycli.d.ts",
"bin": {
"serapaycli": "./bin/serapaycli.js"
},
"scripts": {
"start": "node ./dist/serapaycli.js",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts' 'src/**/*.js'",
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"bin": "node ./bin/serapay.js"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stormwild/serapay.git"
},
"author": "Alexander R. Torrijos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stormwild/serapay/issues"
},
"homepage": "https://github.com/stormwild/serapay#readme",
"devDependencies": {
"@types/chai": "^4.2.1",
"@types/chai-as-promised": "^7.1.2",
"@types/chai-fs": "^2.0.2",
"@types/chai-http": "^4.2.0",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-fs": "^2.0.0",
"chai-http": "^4.3.0",
"dirty-chai": "^2.0.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"sinon": "^7.4.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@types/lodash": "^4.14.138",
"axios": "^0.19.0",
"commander": "^3.0.1",
"date-fns": "^2.1.0",
"lodash": "^4.17.15"
}
}