-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "bracketslogger",
"version": "0.1.1",
"keywords": [
"console",
"colour",
"log",
"map",
"typescript"
],
"description": "Colourful line accurate browser and node console logger that accepts a little inelegance for accuracy",
"repository": {
"type": "git",
"url": "http://github.com/platfarm-com/bracketslogger.git"
},
"directories": {
"lib": "lib"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"bundle": "browserify --standalone bracketslogger -o dist/index.js out/bracketslogger.js -t [ babelify --global --presets [ env ] --plugins [ array-includes ] ]",
"prepare": "npm run build && npm run bundle"
},
"homepage": "https://github.com/platfarm-com/bracketslogger",
"author": {
"name": "Andrew McDonnell",
"email": "[email protected]"
},
"license": "MPL-2.0",
"dependencies": {
"ansi-styles": "~3.2.0"
},
"devDependencies": {
"@types/node": "~9.6.22",
"babel-core": "~6.26.0",
"babel-plugin-array-includes": "~2.0.3",
"babel-plugin-transform-object-assign": "~6.22.0",
"babel-preset-env": "~1.6.1",
"babelify": "~7.3.0",
"browserify": "~14.4.0",
"tslint": "~5.9.1",
"typescript": "~2.6.2",
"typings": "~2.1.1"
}
}