-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@jjavery/oddjob-monorepo",
"private": true,
"version": "0.15.0",
"description": "A job queue for Node.js applications",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "lerna bootstrap",
"test": "lerna run test --stream --no-prefix",
"docs": "jsdoc2md --template README.template.hbs.md --plugin @jjavery/dmd-jjavery --files packages/oddjob/src/*.js > README.md && cp README.md packages/oddjob/"
},
"author": "James P. Javery <james.javery@gmail.com> (https://github.com/jjavery)",
"license": "MIT",
"devDependencies": {
"@jjavery/dmd-jjavery": "^0.1.0",
"jsdoc-to-markdown": "^7.1.1",
"lerna": "^4.0.0"
},
"mochaExplorer.files": "packages/oddjob/test/**/*.js"
}