-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "stumpy",
"version": "0.7.1",
"description": "The Kickass Logger",
"keywords": [
"node.js",
"javascript",
"browser",
"log",
"logger",
"stumpy"
],
"author": {
"name": "Joseph E. Sutton",
"email": "joe@jstty.com",
"web": "http://www.jstty.com"
},
"maintainers": [
{
"name": "Joseph E. Sutton",
"email": "joe@jstty.com"
}
],
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/jstty/stumpy.git"
},
"dependencies": {
"cli-color": "~1.1.0",
"sprintf-js": "~1.0.3",
"stack-trace": "~0.0.9"
},
"devDependencies": {
"bower": "~1.8.0",
"chai": "~3.5.0",
"coveralls": "~2.11.4",
"istanbul": "~0.4.5",
"karma": "~1.3.0",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~2.0.0",
"karma-mocha": "~1.3.0",
"karma-phantomjs-launcher": "~1.0.2",
"mocha": "~3.1.2",
"phantomjs": "~2.1.7",
"phantomjs-prebuilt": "~2.1.13",
"uglify-js": "~2.7.4"
},
"scripts": {
"pretest": "./node_modules/uglify-js/bin/uglifyjs lib/stumpy.js -o lib/stumpy-min.js --stats",
"test": "npm run-script test:node && npm run-script test:browser",
"test:node": "istanbul --config=test/.istanbul.yml cover _mocha -- --check-leaks -t 5000 -b -R spec test/test.js",
"test:browser": "./node_modules/karma/bin/karma start --single-run --browsers PhantomJS",
"prepublish": "./node_modules/uglify-js/bin/uglifyjs lib/stumpy.js -o lib/stumpy-min.js --stats",
"coveralls": "cat ./test/.coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"engines": {
"node": ">=0.10.0"
}
}