2013-09-28 15:55:19 +02:00
|
|
|
# use "yapm install ." if you're installing this from git repository
|
2013-05-29 07:10:57 +02:00
|
|
|
|
2013-06-08 03:16:28 +02:00
|
|
|
name: sinopia
|
2014-01-13 20:41:23 +01:00
|
|
|
version: 0.6.1
|
2013-05-29 07:10:57 +02:00
|
|
|
description: Private npm repository server
|
|
|
|
|
|
|
|
author:
|
|
|
|
name: Alex Kocharin
|
|
|
|
email: alex@kocharin.ru
|
2013-12-29 01:52:23 +01:00
|
|
|
|
2013-06-14 11:08:29 +02:00
|
|
|
repository:
|
|
|
|
type: git
|
2013-09-28 15:55:19 +02:00
|
|
|
url: git://github.com/rlidwka/sinopia
|
2013-05-29 07:10:57 +02:00
|
|
|
|
|
|
|
main: index.js
|
|
|
|
|
|
|
|
bin:
|
2013-06-08 03:16:28 +02:00
|
|
|
sinopia: ./bin/sinopia
|
2013-05-31 08:26:11 +02:00
|
|
|
|
2013-05-29 07:10:57 +02:00
|
|
|
dependencies:
|
2014-01-13 19:02:08 +01:00
|
|
|
express: '>= 3.4.7'
|
|
|
|
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'
|
2013-05-31 08:26:11 +02:00
|
|
|
|
2013-09-27 08:16:46 +02:00
|
|
|
devDependencies:
|
2014-01-13 19:02:08 +01:00
|
|
|
rimraf: '>= 2.2.5'
|
|
|
|
mocha: '>= 1.17.0'
|
2013-09-27 08:16:46 +02:00
|
|
|
|
2013-12-23 01:14:57 +01:00
|
|
|
# linting tools
|
2014-01-13 19:02:08 +01:00
|
|
|
eslint: '~ 0.2.0'
|
2013-12-23 01:14:57 +01:00
|
|
|
#eslint-stylish: '*'
|
|
|
|
|
2013-12-29 01:52:23 +01:00
|
|
|
# for debugging memory leaks, it'll be require()'d if
|
|
|
|
# installed, but I don't want it to be installed everytime
|
|
|
|
#heapdump: '*'
|
|
|
|
|
2013-09-27 02:19:16 +02:00
|
|
|
keywords:
|
2013-06-14 11:08:29 +02:00
|
|
|
- private
|
2013-09-27 02:19:16 +02:00
|
|
|
- package
|
2013-06-14 11:08:29 +02:00
|
|
|
- repository
|
|
|
|
- registry
|
2013-09-27 02:19:16 +02:00
|
|
|
- modules
|
|
|
|
- proxy
|
|
|
|
- server
|
2013-06-14 11:08:29 +02:00
|
|
|
|
2013-09-27 08:16:46 +02:00
|
|
|
scripts:
|
2013-12-19 16:11:54 +01:00
|
|
|
test: mocha ./test/functional ./test/unit
|
2013-12-23 01:14:57 +01:00
|
|
|
lint: eslint -c ./.eslint.js ./lib
|
2013-09-27 08:16:46 +02:00
|
|
|
|
2013-09-27 10:54:16 +02:00
|
|
|
# we depend on streams2 stuff
|
|
|
|
# it can be replaced with isaacs/readable-stream, ask if you need to use 0.8
|
|
|
|
engines:
|
2013-09-28 18:59:18 +02:00
|
|
|
node: '>=0.10'
|
2013-09-27 10:54:16 +02:00
|
|
|
|
2013-05-29 07:10:57 +02:00
|
|
|
preferGlobal: true
|
2013-12-23 01:14:57 +01:00
|
|
|
|
|
|
|
# http://www.wtfpl.net/txt/copying/
|
2013-10-26 17:52:24 +02:00
|
|
|
license: WTFPL
|
2013-05-29 07:10:57 +02:00
|
|
|
|