-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 897 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
{
"name": "coda-js",
"version": "4.2.1",
"description": "An eloquent Node API for interacting with your Coda Docs.",
"source": "src/index.ts",
"main": "build/index.js",
"module": "build/index.mjs",
"typings": "build/index.d.ts",
"scripts": {
"dev": "microbundle watch",
"build": "microbundle",
"test": "jest"
},
"keywords": [
"coda",
"docs",
"automation",
"integration"
],
"author": "Parker McMullin <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/parker-codes/coda-js.git"
},
"homepage": "https://github.com/parker-codes/coda-js",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"jest": "^26.0.1",
"microbundle": "^0.12.2",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}