-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "pelorus",
"version": "1.0.0",
"description": "## About [Pelorus](http://pelorus.ws) is a simple yet highly-effective planning tool that helps reaching goals in a way of successive approximations (based on Dynamic programming).",
"main": "index.js",
"scripts": {
"test": "meteor test --once --driver-package dispatch:mocha-phantomjs --port 9000",
"test-watch": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha-phantomjs --port 9000",
"start": "meteor run",
"deploy": "(cd .deploy && mup deploy)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keenethics/pelorus.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keenethics/pelorus/issues"
},
"homepage": "https://github.com/keenethics/pelorus#readme",
"dependencies": {
"babel-eslint": "^6.1.0",
"debug-log": "^1.0.0",
"eslint": "^2.13.1",
"eslint-plugin-react": "^4.3.0",
"faker": "^3.1.0",
"react": "^15.1.0",
"react-addons-create-fragment": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-addons-linked-state-mixin": "^15.1.0",
"react-addons-perf": "^15.1.0",
"react-addons-pure-render-mixin": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-addons-transition-group": "^15.1.0",
"react-addons-update": "^15.1.0",
"react-dom": "^15.1.0",
"react-mounter": "^1.2.0"
},
"devDependencies": {
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-meteor": "^3.0.1",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.0.0",
"eslint-plugin-standard": "^1.3.1",
"mup": "^1.0.1",
"ssh2": "^0.5.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"meteor/eventmap-params": [
2,
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
0
],
"consistent-return": 0,
"new-cap": 0
}
}
}