-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "@clevercloud/client",
"version": "9.1.0",
"description": "JavaScript REST client and utils for Clever Cloud's API",
"homepage": "https://github.com/CleverCloud/clever-client.js",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/CleverCloud/clever-client.js"
},
"keywords": [
"clever-cloud",
"api",
"rest",
"client"
],
"files": [
"/cjs/",
"/esm/"
],
"scripts": {
"clean-cache": "node tasks/clean-cache.cjs",
"generate-client": "npm run clean-cache && npm run generate-client-from-openapi && npm run generate-cjs-modules",
"generate-client-from-openapi": "node tasks/generate-client.cjs",
"generate-cjs-modules": "rm -rf cjs && babel esm --out-dir cjs && echo '{\"module\":\"commonjs\"}' > cjs/package.json",
"lint": "eslint esm tasks/*.cjs test",
"lint:fix": "eslint --fix esm tasks/*.cjs test",
"prepack": "npm run lint && npm run test-wtr && npm run generate-client",
"test-wtr": "web-test-runner",
"test-wtr:watch": "web-test-runner --watch",
"test-mocha": "mocha -t 60000 test/application-logs.spec.js"
},
"dependencies": {
"component-emitter": "^1.3.0",
"oauth-1.0a": "^2.2.6"
},
"peerDependencies": {
"baconjs": "^0.7.83",
"eventsource": "^1.0.7",
"superagent": "^6.1.0",
"ws": "^7.4.3"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@esm-bundle/chai": "^4.3.3",
"@web/test-runner": "^0.18.1",
"@web/test-runner-mocha": "^0.9.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"chai": "^4.3.10",
"del": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"fs-extra": "^9.1.0",
"hanbi": "^1.0.1",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^2.2.1",
"superagent": "^6.1.0"
},
"volta": {
"node": "22.7.0"
}
}