forked from rlidwka/sinopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
66 lines (51 loc) · 1.18 KB
/
package.yaml
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
# use "yapm install ." if you're installing this from git repository
name: sinopia
version: 0.7.0
description: Private npm repository server
author:
name: Alex Kocharin
email: alex@kocharin.ru
repository:
type: git
url: git://github.com/rlidwka/sinopia
main: index.js
bin:
sinopia: ./bin/sinopia
dependencies:
express: '>= 3.4.7 < 4.0.0-0'
commander: '>= 2.1.0'
js-yaml: '>= 3.0.1'
cookies: '>= 0.3.8'
request: '>= 2.31.0'
async: '>= 0.2.9'
semver: '>= 2.2.1'
minimatch: '>= 0.2.14'
bunyan: '>= 0.22.1'
fs-ext: '>= 0.3.2'
mkdirp: '>= 0.3.5'
devDependencies:
rimraf: '>= 2.2.5'
mocha: '>= 1.17.0'
# linting tools
eslint: '>= 0.4.2'
# for debugging memory leaks, it'll be require()'d if
# installed, but I don't want it to be installed everytime
#heapdump: '*'
keywords:
- private
- package
- repository
- registry
- modules
- proxy
- server
scripts:
test: mocha ./test/functional ./test/unit
lint: eslint -c ./.eslint.yaml ./lib
# we depend on streams2 stuff
# it can be replaced with isaacs/readable-stream, ask if you need to use 0.8
engines:
node: '>=0.10'
preferGlobal: true
# http://www.wtfpl.net/txt/copying/
license: WTFPL