-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 907 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
{
"name": "dev-to-js",
"version": "0.1.2",
"description": "An universal client for the Dev.to API written in Typescript",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"repository": "github:ilyamkin/dev-to-js",
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json",
"dev": "microbundle watch --tsconfig tsconfig.json",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^29.7.0",
"microbundle": "0.13.0",
"nock": "^12.0.3"
},
"keywords": [
"dev.to",
"javascript",
"typescript",
"api",
"client",
"universal"
],
"author": "Ilya Lyamkin <[email protected]>",
"license": "MIT",
"files": [
"src",
"dist"
],
"dependencies": {
"isomorphic-unfetch": "3.1.0",
"querystringify": "2.2.0"
}
}