-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "@my-ideas/oci-node",
"version": "0.4.2",
"description": "A NodeJS wrapper for the Oracle Cloud Infrastructure API",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test nyc mocha --require ts-node/register --require source-map-support/register test/unit**/*",
"build": "tsc",
"prepublish": "npm run build"
},
"author": "hakuna",
"license": "ISC",
"dependencies": {
"@types/jssha": "^2.0.0",
"@types/query-string": "^6.3.0",
"backoff": "^2.5.0",
"http-signature": "^1.2.0",
"jssha": "^2.3.1",
"query-string": "^6.5.0",
"request": "^2.88.0"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"source-map-support": "^0.5.12",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:my-ideas/oci-node.git"
},
"homepage": "https://github.com/my-ideas/oci-node"
}