-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.73 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.73 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "boltpay",
"version": "0.1.0",
"description": "Library to interact with Bolt checkout APIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"Bolt",
"credit cards",
"checkout",
"payment",
"api"
],
"scripts": {
"build:declarations": "npx tsc",
"build:library": "npm run build:declarations && npm run build:prod",
"build:prod": "webpack --env.NODE_ENV=prod",
"dev": "webpack --env.NODE_ENV=dev --watch",
"localServer": "babel-node tests/localServer.ts",
"precommit": "lint-staged",
"ngrok": "./ngrok http 9090 -subdomain=$(babel-node tests/startNgrok.ts)",
"test:dev": "jest --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.ts": [
"tslint",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"ignore": [
"dist/**.*"
]
},
"jest": {
"roots": [
"tests/"
],
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".test.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"globals": {
"IS_DEV": true,
"ts-jest": {
"diagnostics": false
}
},
"verbose": true,
"moduleDirectories": [
"node_modules",
"src",
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/BoltApp/bolt-node.git"
},
"author": "Bolt <support@bolt.com> (https://bolt.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoltApp/bolt-node/issues"
},
"homepage": "https://github.com/BoltApp/bolt-node",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.2",
"@types/node": "^10.11.3",
"@types/puppeteer": "^1.6.4",
"@types/request": "^2.47.1",
"@types/request-promise-native": "^1.0.15",
"@types/webpack": "^4.4.13",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"husky": "^1.1.0",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"ngrok": "^3.1.0",
"prettier": "^1.14.3",
"puppeteer": "^1.8.0",
"regenerator-runtime": "^0.12.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"shelljs": "^0.8.2",
"ts-jest": "^23.10.3",
"tslint": "^5.11.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}