-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mmtc",
"version": "0.9.0",
"description": "Calculate Mobile Money Transaction Cost",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/forfuturellc/mmtc.git"
},
"author": {
"name": "GochoMugo",
"email": "mugo@forfuture.co.ke",
"url": "http://www.gmugo.in"
},
"engines": {
"node": ">=6"
},
"scripts": {
"build": "grunt build",
"publish": "npm run build && docker build --tag forfuture/mmtc --build-arg \"NODE_ENV=production\" .",
"start": "NODE_ENV=production node app.js",
"start-dev": "DEBUG=mmtc-ke:* nodemon app.js",
"test": "grunt test",
"test-coverage": "istanbul cover _mocha --report lcovonly -- -R spec test/test.*.js"
},
"dependencies": {
"ajv": "^6.5.0",
"body-parser": "^1.16.1",
"common-errors": "^1.0.0",
"config": "^1.25.1",
"debug": "^3.1.0",
"express": "^4.14.1",
"lodash": "^4.17.4",
"nunjucks": "^3.0.0",
"showdown": "^1.6.4",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.22.0",
"babelify": "^8.0.0",
"bower": "^1.8.0",
"coveralls": "^3.0.1",
"elbow": "^1.0.0",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.2",
"grunt-sass": "^2.0.0",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"nodemon": "^1.11.0",
"uglifyify": "^5.0.0"
}
}