-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "retro-backend",
"description": "Reactive Retros backend",
"version": "0.3.0",
"contributors": [
{
"name": "Kyle Kemp",
"email": "[email protected]"
}
],
"engines": {
"node": "4.2.2"
},
"scripts": {
"start": "node index.js",
"test": "npm run test:local && npm run test:analysis",
"test:local": "eslint src/** && ava ext/test",
"test:analysis": "node ext/runanalysis.js",
"bump:patch": "npm-bump patch",
"bump:minor": "npm-bump minor",
"bump:major": "npm-bump major"
},
"dependencies": {
"atob": "^2.0.0",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"dice.js": "git+https://github.com/lordnull/dice.js.git#21124f7bf18224b774d0cb6e82ef3872a534a98e",
"hjson": "^1.7.6",
"jsonwebtoken": "^5.5.4",
"lodash": "~3.8.0",
"minimist": "1.2.0",
"mongodb": "~2.0.31",
"moniker": "^0.1.2",
"node-uuid": "^1.4.3",
"require-dir": "^0.3.0",
"restler": "^3.4.0",
"restricted-number": "1.0.0",
"rollbar": "^0.5.13",
"seedrandom": "^2.4.2",
"socketcluster": "^4.3.2"
},
"readmeFilename": "README.md",
"devDependencies": {
"ava": "^0.12.0",
"babel-eslint": "^5.0.0",
"eslint": "~2.2.0",
"eslint-config-kellyirc": "^3.1.0",
"npm-bump": "0.0.16"
},
"ava": {
"files": [
"./test/**/*Quality.js",
"./test/**/*Test.js"
],
"require": [
"babel-register"
]
}
}