-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 916 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
44
45
46
47
48
49
50
51
{
"name": "meowvc",
"version": "3.0.0",
"description": "a version control system for dummies",
"dependencies": {
"chalk": "^1.1.3",
"crc": "^3.5.0",
"fs-extra": "^3.0.1",
"is-utf8": "^0.2.1",
"minimum-edit-distance": "^1.1.7"
},
"devDependencies": {
"ava": "1.0.0-beta.4",
"eslint": "^4.19.1"
},
"scripts": {
"test": "ava"
},
"ava": {
"files": [
"test/validation/*.js",
"test/unit/*.js"
],
"verbose": true
},
"preferGlobal": true,
"engines": {
"node": ">=7.6.0"
},
"license": "MIT",
"bin": {
"mu": "./index.js"
},
"keywords": [
"version control",
"source control",
"versioning",
"vcs",
"cli",
"command line tool",
"file database",
"mu",
"mµ",
"meowvc"
],
"author": "Jake Wood",
"repository": {
"type": "git",
"url": "https://github.com/jzwood/meowvc.git"
}
}