-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "nestjs-braintree",
"version": "0.0.2",
"description": "Nestjs braintree module",
"main": "dist/index.js",
"repository": "[email protected]:nestjs-community/nestjs-braintree.git",
"author": "ashleigh <[email protected]>",
"license": "MIT",
"keywords": [
"nestjs",
"braintree",
"payments",
"subscriptions",
"webhook",
"gatway"
],
"devDependencies": {
"@nestjs/common": "^5.2.2",
"@nestjs/core": "^5.2.2",
"@nestjs/testing": "^5.2.2",
"@types/jest": "^23.3.1",
"@types/node": "^12.7.9",
"coveralls": "^3.0.2",
"jest": "^24.9.0",
"nestjs-config": "^1.2.2",
"prettier": "^1.14.2",
"supertest": "^3.3.0",
"ts-jest": "^23.1.4",
"typescript": "^3.0.3"
},
"dependencies": {
"braintree": "^2.12.0",
"reflect-metadata": "^0.1.12"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
}
}