forked from tprzytula/Meteor-Remember-Me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "rememberme",
"version": "1.0.2",
"description": "Extension for Meteor account-base package with the implementation of rememberMe",
"license": "MIT",
"author": "Tomasz Przytuła <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tprzytulacc/Meteor-Remember-Me"
},
"keywords": [
"meteor",
"rememberme",
"autologin",
"login"
],
"homepage": "https://github.com/tprzytulacc/Meteor-Remember-Me",
"scripts": {
"eslint": "eslint ./client ./server ./test || true",
"eslint-check": "eslint ./client ./server ./test",
"eslint-fix": "eslint ./client ./server ./test --fix || true",
"test": "npm run eslint-check && npm run test:headless",
"test:headless": "cross-env BABEL_ENV=COVERAGE TEST_BROWSER_DRIVER=chrome COVERAGE=1 COVERAGE_OUT_LCOVONLY=1 COVERAGE_OUT_HTML=1 COVERAGE_OUT_TEXT_SUMMARY=1 COVERAGE_APP_FOLDER=$PWD/ meteor test --once --driver-package meteortesting:mocha",
"test:watch": "cross-env WATCH=1 BABEL_ENV=COVERAGE TEST_BROWSER_DRIVER=chrome meteor test --driver-package meteortesting:mocha",
"test:e2e": "cd test/e2e && meteor npm install && meteor npm test",
"coveralls": "cat .coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/runtime": "^7.7.2",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"bcrypt": "^3.0.6",
"chromedriver": "78.0.1",
"coveralls": "^3.0.7",
"cross-env": "^5.2.1",
"eslint": "^6.6.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-meteor": "^6.0.0",
"meteor-node-stubs": "^0.4.1",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"selenium-webdriver": "3.6.0",
"sinon": "^7.5.0",
"ultimate-chai": "^4.1.1"
},
"pre-commit": [
"test"
],
"pre-push": [
"test"
],
"babel": {
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
}
}