Compare commits

..

4 Commits

Author SHA1 Message Date
643fb6a6b7 1.0.9 2016-08-19 11:04:12 +02:00
51b734ef96 update dependencies 2016-08-19 10:57:58 +02:00
7d700f3285 improve README 2016-07-19 00:36:19 +02:00
4ee9c46b04 updated deps 2016-07-18 20:32:15 +02:00
2 changed files with 18 additions and 7 deletions

View File

@ -2,3 +2,14 @@
do more with npm
npmextra is a hub for a series of js tools that help writing, documenting and maintaining npm modules.
## Usage
The main purpose of npmextra is to configure different tools using one npmextra.json. This way complex setups avaoid complexity through many configuration files.
```typescript
let npmextra = require("npmextra");
npmextra.dataFor({
toolName:"sometool",
});
```

View File

@ -1,6 +1,6 @@
{
"name": "npmextra",
"version": "1.0.8",
"version": "1.0.9",
"description": "do more with npm",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@ -18,16 +18,16 @@
},
"homepage": "https://gitlab.com/pushrocks/npmextra#README",
"dependencies": {
"@types/q": "^0.0.27",
"beautylog": "^5.0.14",
"lodash": "^4.13.1",
"@types/q": "^0.x.x",
"beautylog": "^5.0.20",
"lodash": "^4.15.0",
"q": "^1.4.1",
"smartfile": "^4.0.10",
"smartfile": "^4.0.13",
"typings-global": "^1.0.6"
},
"devDependencies": {
"@types/should": "^8.1.26",
"should": "^9.0.2",
"@types/should": "^8.1.27",
"should": "^11.1.0",
"typings-test": "^1.0.1"
}
}