-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "@cloudbolt/js-sdk",
"version": "0.6.9",
"description": "CloudBolt Javascript package for interacting with the CloudBolt API",
"scripts": {
"husky:install": "husky install",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "webpack",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js .",
"precommit": "npm run lint",
"prepare": "npm run husky:install",
"test": "jest --silent"
},
"main": "lib/js-sdk.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CloudBoltSoftware/js-sdk.git"
},
"dependencies": {
"axios": "^0.27.2",
"ramda": "^0.28.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-jest": "^29.2.2",
"babel-loader": "^8.2.3",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jsdoc": "^4.0.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"npm run lint",
"git add"
]
},
"files": [
"lib/**/*",
"types/**/*",
"src/**/*",
"package.json",
"README.md",
"webpack.config.js",
"!src/**/*.test.js"
]
}