-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.43 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
50
51
52
53
54
55
56
57
{
"name": "jmap-client-ts",
"version": "1.0.0",
"description": "Jmap Library in Typescript",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"lint:fix": "npm run lint -- --quiet --fix",
"test": "jest",
"prepare": "npm run build",
"prePublish": "npm run build"
},
"files": [
"lib/**/*"
],
"directories": {
"lib": "src",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linagora/jmap-client-ts.git"
},
"keywords": [
"jmap"
],
"author": "Alexandre Lagane",
"license": "MIT",
"bugs": {
"url": "https://github.com/linagora/jmap-client-ts/issues"
},
"homepage": "https://github.com/linagora/jmap-client-ts#README.md",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"@types/prettier": "2.6.0",
"axios": "^0.21.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.9",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"lint-staged": "^10.5.3",
"node-fetch": "^2.6.1",
"prettier": "2.1.2",
"testcontainers": "^8.10.1",
"ts-jest": "^26.4.4",
"ts-node": "9.0.0",
"typescript": "4.0.3"
}
}