-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "eliberate",
"version": "1.0.0",
"description": "eLiberate =========",
"main": "index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.6",
"popper": "^1.0.1",
"popper.js": "^1.14.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.12.0"
},
"scripts": {
"start": "meteor",
"debug": "meteor run --inspect",
"pretest": "npm run lint --silent",
"test:e2e": "echo 'does nothing yet'",
"test:unit": "SERVER_TEST_REPORTER=xunit SERVER_MOCHA_OUTPUT=$PWD/test-results/mocha/results.xml meteor test --port 3100 --driver-package meteortesting:mocha --once",
"test:watch": "TEST_WATCH=1 SERVER_TEST_REPORTER=xunit SERVER_MOCHA_OUTPUT=$PWD/test-results/mocha/results.xml meteor test --port 3100 --driver-package meteortesting:mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/daposy/eLiberate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daposy/eLiberate/issues"
},
"homepage": "https://github.com/daposy/eLiberate#readme",
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
"off"
]
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}