-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 KB
/
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": "almost-git",
"version": "1.0.0-alpha.13",
"description": "almost-git is a tool for model and text co-evolution",
"keywords": [
"model-driven-development",
"git",
"versioning",
"code-evolution"
],
"bin": "./bin/cli.js",
"scripts": {
"test": "mocha --recursive --timeout 20000",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --recursive --timeout 20000",
"coveralls": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --timeout 20000 -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emanuele-falzone/almostjs-git.git"
},
"author": "Emanuele Falzone",
"license": "MIT",
"bugs": {
"url": "https://github.com/emanuele-falzone/almostjs-git/issues"
},
"homepage": "https://github.com/emanuele-falzone/almostjs-git#readme",
"dependencies": {
"debug": "^3.1.0",
"fs-extra": "^7.0.0",
"path": "^0.12.7",
"simple-git": "^1.96.0",
"tmp-promise": "^1.0.5",
"yargs": "^12.0.1"
},
"devDependencies": {
"assert": "^1.4.1",
"bluebird": "^3.5.1",
"coveralls": "^3.0.2",
"istanbul": "^1.1.0-alpha.1",
"lodash": "^4.17.10",
"mocha": "^5.2.0"
}
}