-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 821 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 821 Bytes
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
{
"name": "png-compare",
"version": "0.0.12",
"description": "Compare png files natively using node.js",
"main": "compare.js",
"homepage": "https://github.com/maxcbc/png-compare#readme",
"scripts": {
"test": "xo && nyc mocha --recursive"
},
"bugs": {
"url": "https://github.com/maxcbc/png-compare/issues"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/maxcbc/png-compare.git"
},
"keywords": [
"png",
"compare",
"node"
],
"author": "Max Bladen-Clark",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"xo": "^0.17.0"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"node_modules"
]
},
"xo": {
"esnext": true,
"ignores": [
"**/*.spec.js",
"**/*.test.js"
]
}
}