-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 1.22 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": "blaze-apollo",
"private": true,
"version": "0.5.0",
"description": "Blaze integration for the Apollo Client. Load GraphQL data directly in your templates!",
"main": "lib/setup.js",
"dependencies": {},
"devDependencies": {
"doctoc": "^1.3.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.2.0",
"standard-version": "^8.0.0"
},
"scripts": {
"doctoc": "doctoc ./README.md",
"eslint": "eslint ./lib",
"publish": "meteor npm install && meteor npm run eslint -s && meteor npm run doctoc -s && meteor npm run changelog && rm -rf ./node_modules && meteor publish",
"changelog": "standard-version --message \"chore(changelog): %s\"",
"test": "meteor test-packages ./ --once --driver-package dispatch:mocha-phantomjs",
"test-watch": "meteor test-packages ./ --driver-package practicalmeteor:mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swydo/blaze-apollo.git"
},
"author": "Michiel ter Reehorst",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swydo/blaze-apollo/issues"
},
"homepage": "https://github.com/Swydo/blaze-apollo#readme"
}