This repository has been archived by the owner on Mar 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "consus",
"description": "The inventory management system for the Milwaukee School of Engineering's tech support",
"version": "0.7.0",
"author": "The Four Fiths",
"contributors": [
"Jordan Longato",
"Matthew Mahnke",
"Quentin Caffero",
"Tony Fay",
"Trevin Hofmann <[email protected]>"
],
"license": "Unlicense",
"scripts": {
"start": "node index.js",
"data-setup": "grunt delete-database && node .dist/data-setup.js",
"delete-database": "grunt delete-database",
"build": "grunt build",
"coverage": "cross-env NODE_ENV=test BABEL_ENV=test nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
"prepublish": "grunt prepublish",
"test": "grunt test",
"lintless-test": "grunt lintless-test",
"lint": "grunt lint",
"simulation": "grunt tools && node .tools/simulation"
},
"repository": {
"type": "git",
"url": "https://github.com/TheFourFifths/consus"
},
"bugs": {
"url": "https://github.com/TheFourFifths/consus/issues"
},
"bin": {
"consusd": "bin/consusd"
},
"keywords": [
"consus",
"inventory management system",
"tech support",
"the four fifths",
"msoe"
],
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "6.22.0",
"babel-register": "^6.16.3",
"chance": "^1.0.4",
"command-line-args": "^3.0.3",
"cross-env": "^3.1.1",
"grunt": "1.0.1",
"grunt-babel": "6.0.0",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-cli": "3.0.0",
"nyc": "^10.1.2",
"request": "^2.79.0",
"sinon": "^1.17.7"
},
"dependencies": {
"body-parser": "1.16.0",
"chai": "3.5.0",
"config": "^1.25.1",
"consus-core": "^0.6.0",
"express": "4.14.0",
"moment-timezone": "^0.5.9",
"nodemailer": "^3.1.5",
"oak-lite": "^1.0.0",
"toml": "^2.3.2",
"xlsx": "0.8.1"
}
}