-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
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
{
"name": "ncloud",
"version": "1.1.4",
"description": "NAVER Cloud Platform(https://www.ncloud.com/) Library for Node.js",
"engineStrict": true,
"engines": {
"node": ">= 8.9.4"
},
"main": "./lib/index.js",
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/node": "^10.12.0",
"gitbook-cli": "^2.3.2",
"jest": "^24.8.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^3.1.3",
"ts-jest": "^24.0.2"
},
"scripts": {
"clean": "rimraf coverage build tmp lib",
"clean:lib": "rimraf lib",
"prebuild": "npm run clean:lib",
"build": "tsc -p tsconfig.release.json && cp src/types.d.ts lib/types.d.ts && printf \"import './types';\n$(cat ./lib/index.d.ts)\" > ./lib/index.d.ts",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish '{src,__tests__}/**/*.{ts,tsx}'",
"pretest": "tsc -p tsconfig.json",
"test": "npm run test-only",
"test-only": "jest",
"test:watch": "jest --watch",
"predeploy": "npm run build",
"deploy": "npm publish",
"gitbookBuild": "cd docs && rimraf docs && gitbook build && mv ./_book ./docs",
"gitbookServe": "cd docs && gitbook serve"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mosfet1kg/ncloud.git"
},
"keywords": [
"ncloud",
"ncp",
"NAVER Cloud Platform"
],
"dependencies": {
"axios": "^0.18.0",
"bytes": "^3.0.0",
"crypto-js": "^3.1.9-1",
"ip": "^1.1.5",
"lodash": "^4.17.11",
"mime-types": "^2.1.18",
"moment-timezone": "^0.5.16",
"tslib": "^1.9.3",
"validator": "^9.4.1",
"xml2json": "^0.11.2",
"yamljs": "^0.3.0"
}
}