-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "poursteady-winston",
"version": "2.0.6",
"description": "Poursteady's wrapping around the Node Winston library",
"main": "dist/index.js",
"scripts": {
"start": "babel-node src/index.js",
"buildSource": "babel src --out-dir dist",
"buildFlow": "flow-copy-source src dist",
"build": "yarn buildSource; yarn buildFlow",
"watch": "yarn buildSource -- --watch",
"pretest": "yarn build",
"test": "mocha",
"prepublish": "yarn test"
},
"author": "Ian Grossberg <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/steadyequipment/node-poursteady-winston.git"
},
"bugs": {
"url": "https://github.com/steadyequipment/node-poursteady-winston/issues"
},
"homepage": "https://github.com/steadyequipment/node-poursteady-winston#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^4.6.1",
"eslint-plugin-flowtype": "^2.35.1",
"flow-bin": "^0.54.0",
"flow-copy-source": "^1.2.1",
"mocha": "^3.5.0"
},
"dependencies": {
"lodash.defaults": "^4.2.0",
"lodash.isboolean": "^3.0.3",
"stack-trace": "0.0.9",
"winston": "^2.3.0"
}
}