프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / ftp-srv / package.json

이력 | 보기 | 이력해설 | 다운로드 (3.9 KB)

1 39 HKM
{
2
  "_args": [
3
    [
4
      "ftp-srv@2.16.0",
5
      "D:\\00.FAMOZ\\16.CMS\\02.SVN\\Repository\\Horizon\\HServer\\00.Server\\00.Program"
6
    ]
7
  ],
8
  "_from": "ftp-srv@2.16.0",
9
  "_id": "ftp-srv@2.16.0",
10
  "_inBundle": false,
11
  "_integrity": "sha512-1mtcQco6ajHa6pGp3mnSFnRHD0BrRHRvP/7EJbVhUfHc6ia+ICrPP2LFOt2nIu0aE/fy7/ofOo19WYFPvpWCqg==",
12
  "_location": "/ftp-srv",
13
  "_phantomChildren": {},
14
  "_requested": {
15
    "type": "version",
16
    "registry": true,
17
    "raw": "ftp-srv@2.16.0",
18
    "name": "ftp-srv",
19
    "escapedName": "ftp-srv",
20
    "rawSpec": "2.16.0",
21
    "saveSpec": null,
22
    "fetchSpec": "2.16.0"
23
  },
24
  "_requiredBy": [
25
    "/"
26
  ],
27
  "_resolved": "https://registry.npmjs.org/ftp-srv/-/ftp-srv-2.16.0.tgz",
28
  "_spec": "2.16.0",
29
  "_where": "D:\\00.FAMOZ\\16.CMS\\02.SVN\\Repository\\Horizon\\HServer\\00.Server\\00.Program",
30
  "bugs": {
31
    "url": "https://github.com/trs/ftp-srv/issues"
32
  },
33
  "config": {
34
    "commitizen": {
35
      "path": "node_modules/cz-customizable"
36
    },
37
    "cz-customizable": {
38
      "config": "config/release/commitMessageConfig.js"
39
    }
40
  },
41
  "dependencies": {
42
    "bluebird": "^3.5.1",
43
    "bunyan": "^1.8.12",
44
    "lodash": "^4.17.4",
45
    "moment": "^2.19.1",
46
    "npm": "^5.6.0",
47
    "uuid": "^3.1.0"
48
  },
49
  "description": "Modern, extensible FTP Server",
50
  "devDependencies": {
51
    "@icetee/ftp": "^0.3.15",
52
    "chai": "^4.0.2",
53
    "chokidar-cli": "1.2.0",
54
    "condition-circle": "^1.6.0",
55
    "coveralls": "2.13.1",
56
    "cross-env": "3.1.4",
57
    "cz-customizable": "5.2.0",
58
    "cz-customizable-ghooks": "1.5.0",
59
    "dotenv": "^4.0.0",
60
    "eslint": "4.5.0",
61
    "eslint-config-google": "0.8.0",
62
    "eslint-friendly-formatter": "3.0.0",
63
    "eslint-plugin-mocha": "^4.11.0",
64
    "eslint-plugin-node": "5.1.1",
65
    "husky": "0.13.3",
66
    "istanbul": "0.4.5",
67
    "mocha": "3.5.0",
68
    "mocha-junit-reporter": "1.13.0",
69
    "mocha-multi-reporters": "1.1.5",
70
    "mocha-pretty-bunyan-nyan": "^1.0.4",
71
    "npm-run-all": "4.0.2",
72
    "nyc": "11.1.0",
73
    "rimraf": "2.6.1",
74
    "semantic-release": "^11.2.0",
75
    "sinon": "^2.3.5"
76
  },
77
  "engines": {
78
    "node": ">=6.x",
79
    "npm": ">=3.9.5"
80
  },
81
  "files": [
82
    "src",
83
    "ftp-srv.d.ts"
84
  ],
85
  "homepage": "https://github.com/trs/ftp-srv#readme",
86
  "keywords": [
87
    "ftp",
88
    "ftp-server",
89
    "ftp-srv",
90
    "ftp-svr",
91
    "ftpd",
92
    "ftpserver",
93
    "server"
94
  ],
95
  "license": "MIT",
96
  "main": "ftp-srv.js",
97
  "name": "ftp-srv",
98
  "release": {
99
    "verifyConditions": "condition-circle"
100
  },
101
  "repository": {
102
    "type": "git",
103
    "url": "git+https://github.com/trs/ftp-srv.git"
104
  },
105
  "scripts": {
106
    "build": "cross-env NODE_ENV=production npm run clean:prod",
107
    "clean:prod": "rimraf dist/",
108
    "commitmsg": "cz-customizable-ghooks",
109
    "dev": "cross-env NODE_ENV=development npm run verify:watch",
110
    "pre-release": "npm-run-all verify test:coverage build ",
111
    "prepush": "npm-run-all verify test:coverage --silent",
112
    "semantic-release": "semantic-release",
113
    "start": "npm run dev",
114
    "test": "npm run test:unit",
115
    "test:check-coverage": "nyc check-coverage",
116
    "test:coverage": "npm-run-all test:unit:once test:check-coverage --silent",
117
    "test:unit": "cross-env NODE_ENV=test nyc mocha --opts config/testUnit/mocha.opts -w",
118
    "test:unit:once": "cross-env NODE_ENV=test nyc mocha --opts config/testUnit/mocha.opts",
119
    "upload-coverage": "cat reports/coverage/lcov.info | coveralls",
120
    "verify": "npm run verify:js --silent",
121
    "verify:js": "eslint -c config/verify/.eslintrc \"src/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js success",
122
    "verify:js:fix": "eslint --fix -c config/verify/.eslintrc \"src/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js:fix success",
123
    "verify:js:watch": "chokidar 'src/**/*.js' 'test/**/*.js' 'config/**/*.js' -c 'npm run verify:js:fix' --initial --silent",
124
    "verify:watch": "npm run verify:js:watch --silent"
125
  },
126
  "types": "./ftp-srv.d.ts",
127
  "version": "2.16.0"
128
}