forked from MatthewCallis/avatar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.92 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
62
63
64
{
"name": "avatar-initials",
"version": "1.3.0",
"description": "JavaScript library for showing Gravatars or generating user avatars from initials.",
"author": "Matthew Callis <matthew.callis@gmail.com>",
"contributors": [
{
"name": "Matthew Callis",
"email": "matthew.callis@gmail.com"
}
],
"main": "./build/avatar.js",
"files": [
"./vendor/md5.js"
],
"repository": {
"type": "git",
"url": "https://github.com/MatthewCallis/avatar"
},
"bugs": {
"url": "https://github.com/MatthewCallis/avatar/issues"
},
"keywords": [
"avatar",
"gravatar",
"initials",
"profile photo"
],
"dependencies": {},
"devDependencies": {
"MD5": "*",
"chai": "*",
"chai-as-promised": "*",
"codeclimate-test-reporter": "*",
"coffee-script": "*",
"coveralls": "*",
"jquery": "^2",
"jsdom": "*",
"mocha": "*",
"mocha-istanbul": "*",
"mocha-jsdom": "*",
"mocha-lcov-reporter": "*",
"mocha-phantomjs": "^3.5.3",
"sinon": "*",
"sinon-chai": "*"
},
"preferGlobal": false,
"private": false,
"license": "MIT",
"jam": {
"dependencies": {}
},
"scripts": {
"instrument": "istanbul instrument --output build-coverage build/",
"compile-tests": "coffee --compile --output test/ test/",
"coverage": "istanbul instrument --output build-coverage build/ && istanbul cover _mocha -- test/*_spec.js -R spec",
"coverage-report": "istanbul report --root coverage lcov",
"lint": "coffeelint src/*.coffee",
"make": "coffee --compile --output build/ src/*.coffee",
"test": "coffee --compile --output test/ test/*.coffee && ./node_modules/mocha/bin/mocha --globals md5",
"test-phantomjs": "mocha-phantomjs --setting localToRemoteUrlAccessEnabled=true --ssl-protocol=any --setting webSecurityEnabled=false test/index.html --hooks ./phantom_hooks.js --timeout 25000"
},
"github": "https://github.com/MatthewCallis/avatar"
}