-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.15 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.15 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
{
"name": "stan",
"version": "1.0.0",
"description": "Conventional auto-formatting",
"main": "index.js",
"scripts": {
"test": "jest --env=node",
"lint": "eslint ."
},
"author": "Jack Kavanagh",
"license": "ISC",
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.2",
"prettier": "^1.11.1",
"standard": "^11.0.1"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"bracketSpacing": false,
"trailingComma": "es5",
"semi": false
},
"engines": {
"node": ">=4"
},
"eslintConfig": {
"extends": [
"standard",
"prettier",
"plugin:jest/recommended"
],
"plugins": [
"prettier",
"jest"
],
"rules": {
"prettier/prettier": 2
},
"env": {
"jest/globals": true
}
},
"dependencies": {
"npm": "^5.8.0"
}
}