-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 1.31 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
{
"name": "meteor-graphql",
"private": true,
"version": "1.0.0",
"description": "Import GraphQL files in Meteor",
"main": "lib/setup.js",
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "2.20.2"
},
"scripts": {
"eslint": "eslint ./lib",
"publish": "meteor npm install && meteor npm run eslint -s && rm -rf ./node_modules && rm -rf ./test && meteor publish",
"setup-test": "rm -rf ./test && meteor create --bare test && cd test && meteor npm i --save selenium-webdriver@3 chromedriver",
"test": "meteor npm run setup-test && cd test && METEOR_PACKAGE_DIRS=../ TEST_BROWSER_DRIVER=chrome meteor test-packages --once --driver-package meteortesting:mocha ../",
"test-watch": "meteor npm run setup-test && cd test && TEST_WATCH=1 METEOR_PACKAGE_DIRS=../ TEST_BROWSER_DRIVER=chrome meteor test-packages --driver-package meteortesting:mocha ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swydo/meteor-graphql.git"
},
"author": "Michiel ter Reehorst",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swydo/meteor-graphql/issues"
},
"homepage": "https://github.com/Swydo/meteor-graphql#readme"
}