-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 962 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": "cocoro-sdk",
"version": "0.4.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "find src/ -iname '*.ts' | xargs organize-imports-cli && prettier src/ --write",
"prepublish": "tsc",
"build": "tsc",
"test": "jest"
},
"author": "David Mohl",
"license": "AGPL",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.10",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"babel-jest": "^27.0.6",
"eslint": "^7.32.0",
"jest": "^27.0.6",
"organize-imports-cli": "^0.8.0",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"fetch-cookie": "^1.0.0",
"node-fetch": "^2.6.1",
"node-fetch-cookies": "^2.0.3"
}
}