-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 847 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 847 Bytes
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
{
"name": "@spotlightdata/node-logger",
"version": "0.2.2",
"description": "A Node.js logger for Spotlight Data's Node.js projects",
"main": "dist/index.js",
"author": "Will Evans",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "babel-node --presets es2015,stage-2 lib/index.js",
"build": "babel --presets es2015,stage-2 --ignore node_modules,dist lib -d dist",
"start": "node dist/lib/index.js",
"test": "jest --config=jest.config.js"
},
"dependencies": {
"winston": "git+https://github.com/winstonjs/winston.git#11f5ea29148bbbd5af878ee594e48c517f2877ff"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"esm": "^3.2.25",
"jest": "^23.6.0"
}
}