forked from thegameofcode/cipherlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cipherlayer",
"version": "0.0.1",
"description": "cipherlayer",
"main": "src/cipherlayer.js",
"scripts": {
"test": "npm run-script jshint && npm run-script mocha && npm run-script features",
"mocha": "./node_modules/.bin/mocha tests --recursive",
"mocha-report-1": "node_modules/.bin/mocha tests --recursive --require blanket -R mocha-lcov-reporter > coverage/mocha.lcov",
"mocha-report-2": "cat coverage/mocha.lcov | node_modules/coveralls/bin/coveralls.js",
"features": "./node_modules/cucumber/bin/cucumber.js features -f pretty --tags ~@ignore",
"features-only": "./node_modules/cucumber/bin/cucumber.js features -f pretty --tags @only",
"jshint": "node_modules/.bin/jshint ./src ./tests ./features main.js",
"coverage-1": "node --harmony node_modules/.bin/istanbul cover ./node_modules/.bin/cucumber.js --lcovonly -- --tags ~@ignore --format json > /dev/null",
"coverage-2": "cp coverage/lcov.info coverage/cucumber.lcov",
"coverage-3": "node_modules/.bin/mocha tests --recursive --require blanket -R mocha-lcov-reporter > coverage/mocha.lcov",
"coverage-4": "node_modules/.bin/lcov-result-merger 'coverage/*.lcov' 'coverage/merged.lcov'",
"coverage-5": "cat ./coverage/merged.lcov | ./node_modules/coveralls/bin/coveralls.js --verbose",
"coverage-6": "codeclimate-test-reporter < ./coverage/merged.lcov"
},
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.0",
"bunyan": "^1.4.0",
"chai": "^3.5.0",
"ciphertoken": "^0.9.5",
"countries-info": "^1.0.6",
"escape-regexp": "0.0.1",
"http-proxy": "^1.8.1",
"jsonschema": "^1.0.0",
"lodash": "^4.3.0",
"mongodb": "^1.4.22",
"passport": "^0.2.1",
"passport-forcedotcom": "^0.1.1",
"passport-google-oauth2": "^0.1.6",
"passport-linkedin-oauth2": "^1.2.1",
"randexp": "^0.4.2",
"redis": "^0.12.1",
"request": "^2.47.0",
"restify": "^2.8.5",
"version-control": "^1.2.4"
},
"devDependencies": {
"assert": "^1.1.2",
"blanket": "^1.1.7",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"coveralls": "^2.11.4",
"cucumber": "^0.5.2",
"istanbul": "^0.3.17",
"jshint": "^2.8.0",
"lcov-result-merger": "^1.0.2",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.2",
"mockery": "^1.4.0",
"nock": "^0.51.0",
"pre-commit": "^1.0.7",
"sinon": "^1.12.2",
"which": "^1.0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/thegameofcode/cipherlayer.git"
},
"author": "luismesas",
"license": "ISC",
"bugs": {
"url": "https://github.com/thegameofcode/cipherlayer/issues"
},
"homepage": "https://github.com/thegameofcode/cipherlayer",
"pre-commit": [
"jshint"
],
"jshintConfig": {
"esnext": true,
"node": true,
"unused": true,
"mocha": true
},
"config": {
"blanket": {
"pattern": [
"src",
"tests"
],
"data-cover-never": [
"node_modules",
"tests"
]
}
}
}