-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.97 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
{
"name": "rheactor-server",
"description": "Core server components for RHeactor applications",
"version": "0.0.0-development",
"scripts": {
"lint": "standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "environment=testing mocha --compilers js:babel-register --reporter=dot --timeout=5000 test/\\*\\*/\\*.js",
"test:api": "environment=testing mocha --compilers js:babel-register --reporter=dot --timeout=5000 test/yadda/\\*\\*/\\*.js",
"test:backend": "environment=testing mocha --compilers js:babel-register --reporter=dot --timeout=5000 test/mocha/\\*\\*/\\*.js",
"test:coverage": "NODE_ENV=nyc babel src --out-dir instrumented-src > /dev/null && nyc --reporter=text-summary --reporter=lcov npm run test",
"test:coverage-travis": "npm run test:coverage && codeclimate-test-reporter < ./coverage/lcov.info && rm -rf ./coverage",
"precommit": "npm run lint",
"commitmsg": "validate-commit-msg && validate-commit-email @resourceful-humans.com$"
},
"repository": {
"type": "git",
"url": "https://github.com/ResourcefulHumans/rheactor-server.git"
},
"author": "Resourceful Humans GmbH <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ResourcefulHumans/rheactor-server/issues"
},
"homepage": "https://github.com/ResourcefulHumans/rheactor-server#readme",
"peerDependencies": {
"@resourcefulhumans/rheactor-bdd-contexts": "^2.1.0",
"@resourcefulhumans/rheactor-errors": "1.x",
"bcrypt": "^1.0.0",
"body-parser": "^1.16.1",
"bluebird": "^3.4.6",
"colors": "^1.1.2",
"cors": "^2.8.1",
"express": "^4.14.1",
"fast-url-parser": "^1.1.3",
"glob": "^7.1.0",
"joi": "^10.2.0",
"jsonwebtoken": "^7.3.0",
"keypair": "^1.0.0",
"lodash": "^4.16.1",
"moment": "^2.15.1",
"nconf": "^0.8.4",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"redis": "^2.6.5",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"rheactor-event-store": "9.x",
"rheactor-models": "^3.5.0",
"rheactor-value-objects": "^10.0.0",
"template-mailer-aws-lambda-client": "^2.x",
"transactional-emails": "^2.0.0",
"tcomb": "^3.2.16"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.1",
"husky": "^0.13.3",
"juice": "^4.0.2",
"lolex": "^1.6.0",
"mocha": "^3.0.2",
"nyc": "^10.2.0",
"rheactor-yadda-feature-runner": "^2.0.2",
"semantic-release": "^6.3.2",
"showdown": "^1.6.4",
"standard": "^10.0.2",
"superagent": "^3.5.2",
"supertest": "^3.0.0",
"validate-commit-email": "^1.0.1",
"validate-commit-msg": "^2.12.1",
"yadda": "^1.3.0"
},
"files": [
"dist",
"src",
"features",
"README.md"
],
"main": "dist/index.js",
"engines": {
"node": ">=6.9.0"
}
}