-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "remarkable-typescript",
"version": "1.1.3",
"description": "A typescript reMarkable Cloud API",
"keywords": [],
"author": "Benoît Sepe",
"license": "MIT",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"prepare": "npx tsc",
"start": "ts-node --files src/index.ts",
"lint": "eslint src/** --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"test": "TS_NODE_FILES=TRUE mocha -r ts-node/register src/**/*.test.ts"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/sinon": "^9.0.4",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"sinon-stub-promise": "^4.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"getmac": "^5.11.0",
"got": "^11.5.1",
"hex-lite": "^1.5.0",
"jszip": "^3.5.0",
"query-string": "^6.13.1",
"uuid": "^8.2.0"
}
}