-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "@sitmun/sitmun-js",
"version": "0.0.6",
"description": "A universal client for the SITMUN public api written in Typescript",
"type": "module",
"source": "src/sitmun.ts",
"exports": "./dist/sitmun.modern.js",
"main": "dist/sitmun.cjs",
"unpkg": "dist/sitmun.umd.js",
"types": "dist/sitmun.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sitmun/sitmun-js.git"
},
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json",
"dev": "microbundle watch --tsconfig tsconfig.json",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^27.0.6",
"microbundle": "^0.13.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"keywords": [
"sitmun",
"javascript",
"typescript",
"api",
"client",
"universal"
],
"author": "Francisco J Lopez-Pellicer <[email protected]>",
"license": "MIT",
"files": [
"src",
"dist"
],
"dependencies": {
"unfetch": "^4.2.0",
"isomorphic-unfetch": "^3.1.0"
},
"bugs": {
"url": "https://github.com/sitmun/sitmun-js/issues"
},
"homepage": "https://github.com/sitmun/sitmun-js#readme"
}