-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 997 Bytes
/
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
{
"name": "fluidpay-js",
"version": "1.0.0",
"description": "SDK for the fluidpay API in javascript",
"main": "dist/fluidpay.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"build": "webpack"
},
"author": "",
"license": "ISC",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "./test/.*.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
},
"dependencies": {
"es6-promise": "^4.2.8",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/chance": "^1.0.4",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.15",
"ajv": "^6.10.0",
"chance": "^1.0.18",
"jest": "^24.8.0",
"moment": "^2.24.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.3",
"tslint": "^5.17.0",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
}
}