-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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": "bows",
"version": "1.7.2",
"description": "Rainbowed console logs for chrome, opera and firefox in development.",
"main": "bows.js",
"scripts": {
"build": "node build.js",
"prettier": "prettier --single-quote --write {.,test}/**/*.js *.js test/**/*.html",
"prettier-check": "prettier --single-quote --check {.,test}/**/*.js *.js test/**/*.html",
"test": "node build.js && npm run prettier-check && node test/index.js",
"preversion": "git checkout master && git pull && npm ls",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish"
},
"dependencies": {
"andlog": "^1.0.2"
},
"devDependencies": {
"browserify": "^5.10.0",
"prettier": "1.19.0",
"puppeteer": "^2.0.0",
"uglify-js": "^2.3.6"
},
"author": "Philip Roberts",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "bd7b0c00f47771a342ddc098cdc7e5ee5b4a53b3",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git://github.com/latentflip/bows.git"
},
"keywords": [
"color",
"logging",
"chrome",
"console"
],
"bugs": {
"url": "https://github.com/latentflip/bows/issues"
}
}