-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.63 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
{
"name": "opinionated-meteor-starter",
"private": false,
"scripts": {
"start": "meteor --no-release-check --settings ./config/settings.development.json",
"start-dev": "DEBUG=* meteor --no-release-check --settings ./config/settings.development.json",
"lint": "eslint .",
"test": "meteor test --driver-package practicalmeteor:mocha --port 3100 --settings ./config/settings.development.json",
"test-watch": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha --port 3100 --settings ./config/settings.development.json",
"server-test": "meteor test --once --driver-package dispatch:mocha --port 3100 --settings ./config/settings.development.json",
"server-test-watch": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha --port 3100 --settings ./config/settings.development.json"
},
"config": {
"ghooks": {
"pre-commit": "opt --out pre-commit --exec 'npm run lint'",
"pre-push": "opt --out pre-push --exec 'npm run server-test'"
}
},
"engines": {
"node": ">=4 <=5"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"debug": "^2.6.3",
"meteor-node-stubs": "~0.2.0"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"chai": "*",
"docdash": "^0.3.0",
"es6-enum": "^1.0.3",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-meteor": "^3.4.0",
"eslint-plugin-react": "^4.3.0",
"ghooks": "^2.0.0",
"opt-cli": "^1.5.1",
"sinon": "^2.1.0"
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}