-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 2.74 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
93
94
95
96
97
98
{
"name": "@strider/core",
"version": "1.0.0",
"description": "Strider Core",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"lint": "snazzy lib/**/*.js",
"pretest": "npm run lint",
"test": "tape test/ | tap-spec",
"test:lint": "snazzy test/**/*.js",
"test-coverage": "babel-istanbul cover test/ --report lcovonly | tap-spec",
"send-coverage": "codeclimate-test-reporter < coverage/lcov.info",
"posttest-coverage": "npm run lint",
"build": "babel -s -d dist lib",
"watch": "babel -sw -d dist lib",
"docs": "apidoc -i lib/ -o docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Strider-CD/core.git"
},
"keywords": [
"Strider",
"continuous integration",
"ci",
"deployment",
"drones"
],
"author": "Ilya Radchenko <[email protected]> (https://github.com/knownasilya)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Strider-CD/core/issues"
},
"homepage": "https://github.com/Strider-CD/core#readme",
"engines": {
"node": ">=6"
},
"devDependencies": {
"apidoc": "^0.17.5",
"babel-cli": "^6.11.4",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.1",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.11.5",
"babel-register": "^6.11.6",
"codeclimate-test-reporter": "^0.3.1",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.0",
"snazzy": "^3.0.0",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"dependencies": {
"@glimmer/di": "^0.1.8",
"bcryptjs": "^2.3.0",
"bluebird": "^3.3.1",
"config": "^1.14.0",
"deasync": "^0.1.2",
"eventemitter3": "^2.0.2",
"flat": "^2.0.0",
"github": "^9.0.0",
"good": "^7.1.0",
"good-console": "^6.4.0",
"good-squeeze": "^5.0.1",
"hapi": "^16.1.0",
"hapi-async-handler": "^1.0.3",
"hapi-auth-basic": "^4.1.0",
"hapi-auth-jwt2": "^7.2.4",
"hapi-decorators": "^0.4.0",
"joi": "^10.2.2",
"joigoose": "^1.5.5",
"json5": "^0.5.1",
"jsonwebtoken": "^7.3.0",
"jwt-simple": "^0.5.1",
"lodash": "^4.3.0",
"lokijs": "^1.3.8",
"mongoose": "^4.1.8",
"mongotape": "^1.0.0",
"node-uuid": "^1.4.3",
"primus": "^6.0.9",
"primus-rooms": "^3.3.0",
"redtape": "^1.0.0",
"rwlock": "^5.0.0",
"string": "^3.3.0",
"validator": "^6.2.1",
"winston": "^2.1.1",
"ws": "^2.1.0"
},
"standard": {
"parser": "babel-eslint"
}
}