-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.31 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
61
{
"name": "supertest",
"version": "1.0.0",
"description": "",
"main": "andriy.js",
"scripts": {
"start": "node andriy",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cherevan/superTest.git"
},
"author": "Yevhen, Artur, Andriuha, Sector",
"prettier": {
"bracketSpacing": true,
"parser": "babylon",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"airbnb-base",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"root": true,
"rules": {
"prettier/prettier": "error",
"no-param-reassign": [
"error",
{
"props": false
}
]
}
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Cherevan/superTest/issues"
},
"homepage": "https://github.com/Cherevan/superTest#readme"
}