-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "taak-sdk",
"version": "0.0.0-development",
"description": "An universal client for the Taakcloud.com API",
"keywords": [
"taak",
"taakcloud",
"taak-sdk-js",
"taakcloud.com",
"javascript",
"typescript",
"api",
"client",
"universal"
],
"homepage": "https://github.com/taakcloud/taak-sdk-js#readme",
"bugs": {
"url": "https://github.com/taakcloud/taak-sdk-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/taakcloud/taak-sdk-js.git"
},
"license": "Apache-2.0",
"author": "Sid Morad <SidMorad@users.noreply.github.com>",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json",
"clean": "rm -rf dist",
"dev": "microbundle watch --tsconfig tsconfig.json",
"prepack": "npm run build",
"pretty-quick": "pretty-quick",
"semantic-release": "semantic-release",
"sort-package": "sort-package-json package.json",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"isomorphic-unfetch": "3.1.0",
"querystringify": "2.2.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"husky": "^8.0.0",
"jest": "^29.3.1",
"microbundle": "0.13.0",
"nock": "^13.3.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^19.0.5",
"sort-package-json": "^1.57.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"publishConfig": {
"access": "public"
}
}