-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "gocardless-pro-node",
"version": "0.0.3",
"main": "lib/gocardless-pro-node.js",
"types": "lib/gocardless-pro-node.d.ts",
"repository": "https://github.com/tolujimoh/gocardless-pro-node.git",
"author": "Tolu Jimoh <[email protected]>",
"license": "MIT",
"scripts": {
"test": "mocha",
"test:coverage": "./node_modules/.bin/nyc mocha",
"build": "tsc",
"build:declaration": "tsc --declaration --outFile ./lib/gocardless-pro-node --emitDeclarationOnly",
"build:watch": "tsc --watch"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"@types/node": "^10.12.19"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/dotenv": "^6.1.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^6.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
}
}