This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 KB
/
package.json
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
{
"name": "cli-worker",
"version": "1.0.2",
"description": "CLI Worker Process Template",
"main": "index.js",
"scripts": {
"doc": "jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template -R README.md -d './docs' -r --verbose ./src",
"cover": "nyc --reporter=html --reporter=text mocha -t 5000 test/*.mocha.js",
"test:only": "mocha test/*.mocha.js --timeout 5000",
"test": "npm run build:test && npm run test:only",
"travis": "npm run build && USER_MONGODB_URL='mongodb://travis:test@localhost:27017/bi-logs' nyc --reporter=lcovonly mocha test/*.mocha.js --timeout 10000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"bulid:clean": "rm -rf lib",
"build": "npm run bulid:clean && NODE_ENV=development babel src -d lib --copy-files",
"build:prod": "npm run bulid:clean && NODE_ENV=production babel src -d lib --copy-files",
"build:test": "npm run bulid:clean && NODE_ENV=test babel src -d lib --copy-files",
"build:watch": "NODE_ENV=development babel src -w -d lib --copy-files"
},
"author": "Rockie Guo <rockie@kitmi.com.au>",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/kitmi/cli-worker.git"
},
"bugs": {
"url": "https://github.com/kitmi/cli-worker/issues"
},
"keywords": [
"cli",
"worker"
],
"nyc": {
"exclude": [
"babel.config.js",
"test"
]
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-plugin-contract": "^1.3.0",
"capture-console": "^1.0.1",
"coveralls": "^3.0.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mongodb": "^3.1.6",
"nyc": "^13.0.1",
"shelljs": "^0.8.2",
"should": "^13.2.3",
"supertest": "^3.3.0",
"winston-daily-rotate-file": "^3.3.3",
"winston-mongodb": "github:kitmi/winston-mongodb"
},
"dependencies": {
"minimist": "^1.2.0",
"rk-config": "^2.0.0",
"rk-utils": "^2.1.6",
"winston": "^3.1.0",
"winstonflight": "^1.0.4"
}
}