-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.38 KB
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
{
"name": "kata-base",
"version": "0.1.0",
"description": "Base Repo for JavaScript Code Katas",
"author": "Matt Morgan",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/matthewmorgan/kata-base.git"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-jest": "^24.5.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0",
"jest-cli": "^24.5.0"
},
"jest": {
"modulePathIgnorePatterns": [
"package.json"
]
},
"scripts": {
"test": "jest ./*",
"watch": "jest --watch ./*",
"watch:cover": "jest --coverage --watch ./*",
"lint": "eslint .",
"lint-test": "eslint . && jest --no-cache ./* "
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": "airbnb",
"rules": {
"import/no-unresolved": "off",
"import/extensions": "off"
}
},
"licenses": [
"MIT"
],
"bugs": {
"url": "https://github.com/matthewmorgan/kata-base/issues"
},
"homepage": "https://github.com/matthewmorgan/kata-base#readme",
"main": "index.js",
"dependencies": {}
}