-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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
{
"name": "@rei/balsa",
"version": "2.0.0",
"description": "Lightweight JavaScript logging for the browser",
"repository": {
"type": "git",
"url": "https://github.com/reidev/balsa.git"
},
"author": "Rob McGuire-Dale <rmcguir@rei.com>",
"contributors": [
"Andrew Gatlabayan <agats@rei.com>"
],
"main": "index.js",
"scripts": {
"test": "gulp jshint && gulp test",
"size-check": "echo '--- Size check (minified, bytes) ---\n\nindex.js:' && browserify index.js | uglifyjs | wc -c && echo 'relays/base.js:' && browserify relays/base.js | uglifyjs | wc -c && echo 'relays/console.js:' && browserify relays/console.js | uglifyjs | wc -c && echo 'relays/ajax.js:' && browserify relays/ajax.js | uglifyjs | wc -c && echo '\n'"
},
"dependencies": {
"atomic": "^1.0.0"
},
"devDependencies": {
"browserify": "^6.0.3",
"gulp": "^3.8.8",
"gulp-istanbul": "^0.3.1",
"gulp-jshint": "^1.8.5",
"gulp-mocha": "^1.1.0",
"gulp-util": "^3.0.1",
"lodash": "^3.0.1",
"mocha": "^1.21.4",
"proxyquire": "^1.0.1",
"should": "^4.0.4",
"sinon": "^1.10.3",
"uglify-js": "^2.4.15"
}
}