-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1009 Bytes
/
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
{
"name": "fcmp",
"version": "1.1.0",
"description": "very easy way to compare the content of globs or read streams",
"scripts": {
"lint": "eslint src test",
"compile": "babel src --out-dir dist --source-maps",
"build": "npm run lint && npm run compile",
"test": "npm run build && mocha",
"prepublish": "npm test"
},
"main": "dist/fcmp.js",
"repository": {
"type": "git",
"url": "git@github.com:raylin/fcmp.git"
},
"keywords": [
"file",
"compare",
"hash",
"checksum",
"sha1",
"file comparison"
],
"engines": {
"node": "4.3.2"
},
"author": "Ray Lin <lieeray4136@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.2.0",
"mocha": "^2.3.4"
},
"dependencies": {
"glob": "^7.0.0"
}
}