-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.14 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
94
{
"name": "grapheel-iris-client-api",
"version": "1.6.5",
"description": "Script to talk to the Grapheel IRIS API",
"main": "./dist/index.js",
"scripts": {
"test": "eslint src & jest src/",
"build": "babel src --out-dir dist"
},
"husky": {
"hooks": {
"pre-commit": "eslint src"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tingard/IRIS-client-API.git"
},
"keywords": [
"grapheel",
"iris"
],
"author": "Tim Lingard <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tingard/IRIS-client-API/issues"
},
"homepage": "https://github.com/tingard/IRIS-client-API#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"jest": "^23.6.0"
},
"dependencies": {
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jsonwebtoken": "^8.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./__jestSetup__.js",
"verbose": true
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"rules": {
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "only-multiline"
}
],
"function-paren-newline": 0,
"implicit-arrow-linebreak": 0,
"import/no-extraneous-dependencies": 0,
"new-cap": [
2,
{
"capIsNewExceptions": [
"Map",
"List"
]
}
],
"no-console": 0,
"no-plusplus": 0,
"no-restricted-globals": 0,
"object-curly-newline": 0,
"react/forbid-prop-types": [
0
]
}
}
}