forked from matteodem/meteor-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "meteor-boilerplate",
"version": "1.0.0",
"description": "This boilerplate is here to give you a simple starting point for your meteor projects.",
"main": "index.js",
"dependencies": {
"babel-runtime": "^6.23.0",
"tachyons": "^4.7.4"
},
"devDependencies": {
"eslint": "^4.0.0",
"babel-eslint": "^7.2.3",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
},
"scripts": {
"start": "meteor --settings settings.json",
"test": "meteor test --port 4400 --driver-package=practicalmeteor:mocha",
"lint": "eslint --ignore-pattern '*.test.js' 'client/*.js' 'server/*.js' 'imports/**/*.js'",
"test-cli": "meteor test --once --driver-package=dispatch:mocha",
"cli": "npm run lint && npm run test-cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteodem/meteor-boilerplate.git"
},
"author": "Matteo De Micheli",
"license": "MIT",
"bugs": {
"url": "https://github.com/matteodem/meteor-boilerplate/issues"
},
"homepage": "https://github.com/matteodem/meteor-boilerplate#readme"
}