-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.66 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": "malice",
"version": "0.0.1",
"engines": {
"node": ">=6"
},
"description": "Malice",
"entrypoint": "index.js",
"main": "src/driver.coffee",
"bin": "coffee ./src/driver.coffee",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test -R spec --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul --debug",
"start": "node index.js",
"compile": "coffee -c -o dist src",
"codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage -p .",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
},
"repository": "github:tsavo/malice",
"keywords": [
"malice"
],
"author": "Travis Savo <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"app-module-path": "^2.1.0",
"colors": "^1.1.2",
"cryo": "^0.0.6",
"listify": "^1.0.0",
"moment": "^2.17.1",
"nesh": "^1.7.0",
"node-eval": "^1.1.0",
"node-serialize": "0.0.4",
"nodemailer": "^2.6.4",
"proportionate": "^1.0.1",
"q": "^2.0.3",
"serially": "^3.0.3",
"underscore": "^1.8.3",
"uuid": "^3.0.1",
"watchr": "^3.0.1",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"codacy-coverage": "^2.0.0",
"codeclimate-test-reporter": "^0.4.0",
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-circleci-reporter": "0.0.2",
"mocha-junit-reporter": "^1.12.1",
"mock-socket": "^6.0.3",
"telnet-client": "^0.12.3",
"xunit-file": "^1.0.0"
}
}