-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@teamleader/api",
"version": "6.1.2",
"description": "Teamleader API SDK",
"main": "dist/cjs/main.js",
"module": "dist/es/main.js",
"browser": "dist/umd/api.min.js",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.18.6",
"@types/humps": "^2.0.2",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.17.10",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-jest": "^28.1.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.0",
"jest": "^28.1.3",
"jest-fetch-mock": "^3.0.0",
"prettier": "^2.0.1",
"pretty-quick": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"typescript": "^4.7.4"
},
"dependencies": {
"humps": "^2.0.1",
"lodash": "^4.17.21"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"start": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --config ./.eslintrc --ignore-path ./.eslintignore --ext .ts src",
"lint:fix": "yarn lint -- --fix",
"check-types": "tsc",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/teamleadercrm/sdk-js.git"
},
"keywords": [
"api",
"teamleader"
],
"jest": {
"verbose": true,
"testEnvironmentOptions": {
"url": "http://localhost"
},
"automock": false,
"setupFiles": [
"./setupJest.js"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/teamleadercrm/sdk-js/issues"
},
"homepage": "https://github.com/teamleadercrm/sdk-js#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}