mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-01-27 22:59:51 -05:00
Switched back to package.yaml
This commit is contained in:
parent
228f1512d7
commit
39083b819f
3 changed files with 20 additions and 80 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
||||||
node_modules
|
node_modules
|
||||||
|
package.json
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
sinopia-*.tgz
|
sinopia-*.tgz
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
79
package.json
79
package.json
|
@ -1,79 +0,0 @@
|
||||||
{
|
|
||||||
"name": "sinopia",
|
|
||||||
"version": "0.8.1",
|
|
||||||
"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": {
|
|
||||||
"async": ">= 0.2.9",
|
|
||||||
"bunyan": ">= 0.22.1",
|
|
||||||
"commander": ">= 2.1.0",
|
|
||||||
"cookies": ">= 0.3.8",
|
|
||||||
"express": "3.4.x",
|
|
||||||
"handlebars": "1.x.x",
|
|
||||||
"helpers.less": "git://github.com/bpeacock/helpers.less.git",
|
|
||||||
"highlight.js": "^8.0.0",
|
|
||||||
"js-yaml": ">= 3.0.1",
|
|
||||||
"lunr": "^0.5.2",
|
|
||||||
"marked": "^0.3.2",
|
|
||||||
"minimatch": ">= 0.2.14",
|
|
||||||
"mkdirp": ">= 0.3.5",
|
|
||||||
"onclick": "^0.1.0",
|
|
||||||
"onscroll": "0.0.3",
|
|
||||||
"request": ">= 2.31.0",
|
|
||||||
"semver": ">= 2.2.1",
|
|
||||||
"tar.gz": "^0.1.1",
|
|
||||||
"transition-complete": "0.0.2",
|
|
||||||
"underscore": "^1.6.0",
|
|
||||||
"unopinionate": "0.0.4"
|
|
||||||
},
|
|
||||||
"optionalDependencies": {
|
|
||||||
"fs-ext": ">= 0.3.2"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"browserify": "^3.46.0",
|
|
||||||
"browserify-handlebars": "~0.2.0",
|
|
||||||
"eslint": ">= 0.4.2",
|
|
||||||
"grunt": "^0.4.4",
|
|
||||||
"grunt-browserify": "^2.0.8",
|
|
||||||
"grunt-contrib-less": "^0.11.0",
|
|
||||||
"grunt-contrib-watch": "^0.6.1",
|
|
||||||
"handlebars": "^1.3.0",
|
|
||||||
"mocha": ">= 1.17.0",
|
|
||||||
"rimraf": ">= 2.2.5"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"private",
|
|
||||||
"package",
|
|
||||||
"repository",
|
|
||||||
"registry",
|
|
||||||
"modules",
|
|
||||||
"proxy",
|
|
||||||
"server"
|
|
||||||
],
|
|
||||||
"scripts": {
|
|
||||||
"test": "mocha ./test/functional ./test/unit",
|
|
||||||
"lint": "eslint -c ./.eslint.yaml ./lib"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=0.10"
|
|
||||||
},
|
|
||||||
"preferGlobal": true,
|
|
||||||
"publishConfig": {
|
|
||||||
"registry": "https://registry.npmjs.org/"
|
|
||||||
},
|
|
||||||
"license": {
|
|
||||||
"type": "WTFPL",
|
|
||||||
"url": "http://www.wtfpl.net/txt/copying/"
|
|
||||||
}
|
|
||||||
}
|
|
18
package.yaml
18
package.yaml
|
@ -28,6 +28,17 @@ dependencies:
|
||||||
minimatch: '>= 0.2.14'
|
minimatch: '>= 0.2.14'
|
||||||
bunyan: '>= 0.22.1'
|
bunyan: '>= 0.22.1'
|
||||||
mkdirp: '>= 0.3.5'
|
mkdirp: '>= 0.3.5'
|
||||||
|
handlebars: '1.x.x'
|
||||||
|
helpers.less: 'git://github.com/bpeacock/helpers.less.git'
|
||||||
|
highlight.js: '^8.0.0'
|
||||||
|
lunr: '^0.5.2'
|
||||||
|
marked: '^0.3.2'
|
||||||
|
onclick: '^0.1.0'
|
||||||
|
onscroll: '0.0.3'
|
||||||
|
tar.gz: '^0.1.1'
|
||||||
|
transition-complete: '0.0.2'
|
||||||
|
underscore: '^1.6.0'
|
||||||
|
unopinionate: '0.0.4'
|
||||||
|
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fs-ext: '>= 0.3.2'
|
fs-ext: '>= 0.3.2'
|
||||||
|
@ -43,6 +54,13 @@ devDependencies:
|
||||||
# installed, but I don't want it to be installed everytime
|
# installed, but I don't want it to be installed everytime
|
||||||
#heapdump: '*'
|
#heapdump: '*'
|
||||||
|
|
||||||
|
browserify: '^3.46.0'
|
||||||
|
browserify-handlebars: '~0.2.0'
|
||||||
|
grunt: '^0.4.4'
|
||||||
|
grunt-browserify: '^2.0.8'
|
||||||
|
grunt-contrib-less: '^0.11.0'
|
||||||
|
grunt-contrib-watch: '^0.6.1'
|
||||||
|
|
||||||
keywords:
|
keywords:
|
||||||
- private
|
- private
|
||||||
- package
|
- package
|
||||||
|
|
Loading…
Add table
Reference in a new issue