-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "swish-payments",
"version": "0.1.7",
"description": "",
"files": ["dist"],
"author": "Carl Barrdahl <carlbarrdahl@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/squish-platform/swish-payments"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index",
"types": "dist/index",
"scripts": {
"start": "npm run build:watch",
"build:watch": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"test": "jest"
},
"keywords": [],
"devDependencies": {
"@types/express": "^4.11.1",
"@types/jest": "^22.1.2",
"@types/node": "^10.0.9",
"@types/node-fetch": "^1.6.9",
"jest": "^22.3.0",
"nodemon": "^1.14.12",
"ts-jest": "^22.0.4",
"ts-node": "^6.0.3",
"typescript": "^2.8.3"
},
"prettier": {
"semi": false
},
"jest": {
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": ["**/test/*.(ts|tsx|js)"]
},
"dependencies": {
"node-fetch": "^2.1.2"
}
}