-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "heroku-log",
"version": "1.4.0",
"main": "build/index.js",
"description": "console.log wrapper for heroku-like logs",
"repository": "[email protected]:entwicklerstube/heroku-log.git",
"author": "michaelzoidl <[email protected]>",
"keywords": [
"heroku",
"log",
"logging"
],
"license": "MIT",
"scripts": {
"build": "rimraf build && mkdir build && babel index.js --out-dir build",
"prepublish": "yarn run test && yarn run build",
"test": "mocha test.js --require mocha --compilers js:babel-core/register",
"standard": "standard --env mocha"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"mocha": "^3.4.1",
"pad": "^1.1.0",
"rimraf": "^2.6.1",
"standard": "^10.0.2"
},
"files": [
"build"
],
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"standard": {
"ignore": [
"build"
],
"globals": [
"expect"
]
}
}