-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "nodecloud",
"private": "true",
"workspaces": [
"packages/*",
"generator"
],
"description": "⚡️ The Node.js API for open cloud",
"scripts": {
"test": "lerna run test",
"lint": "lerna run lint",
"prettier": "lerna run prettier",
"format": "prettier --write",
"doc": "jsdoc -c jsdoc.json",
"generator": " cd generator && tsc main.ts && node main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudlibz/nodecloud.git"
},
"keywords": [
"nodecloud",
"nodejs",
"node",
"node-cloud",
"node-aws",
"node-azure"
],
"author": "scorelab",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudlibz/nodecloud/issues"
},
"homepage": "https://github.com/cloudlibz/nodecloud#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.158",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.6",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"better-docs": "^2.3.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^8.13.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.0",
"jsdoc": "^3.6.5",
"lerna": "^3.22.1",
"mocha": "^8.0.1",
"nock": "^9.6.1",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"ts-node": "^8.10.2"
},
"husky": {
"hooks": {
"pre-commit": "lerna run test && lerna run prettier && lerna run lint",
"pre-push": "lerna run test"
}
}
}