-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "@aceandtate/clicktoaddress",
"version": "0.1.14",
"description": "A clicktoaddress client",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"develop": "tsc -w",
"prepublishOnly": "npm run -s test && npm run -s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aceandtate/clicktoaddress.git"
},
"keywords": [
"address",
"clicktoaddress",
"craftyclicks"
],
"author": "m@reaktivo.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/aceandtate/clicktoaddress/issues"
},
"homepage": "https://github.com/aceandtate/clicktoaddress#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.18",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "test\\.(t|j)s$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}