-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.82 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.82 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "javascripting-english-major",
"version": "2.0.0",
"description": "A 15-session course that teaches humanities undergraduates how to write their own web-based project using JavaScript.",
"main": "src/index.js",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": "git@github.com:muziejus/javascripting-english-major.git",
"author": "Moacir P. de Sá Pereira <moacir.p@columbia.edu> (http://moacir.com)",
"license": "GPL-3.0",
"private": true,
"dependencies": {
"gatsby": "^2.10.0",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-transformer-remark": "^2.6.9",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"lodash": "^4.17.15",
"prettier": "^1.18.2",
"xo": "^0.24.0"
},
"xo": {
"envs": [
"amd",
"browser"
],
"globals": [],
"prettier": true,
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"space": 2,
"rules": {
"require-await": 0,
"no-unused-expressions": 0,
"no-unused-vars": 1,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 1
},
"overrides": [
{
"files": "tests/**/*-test.js",
"envs": [
"mocha"
],
"rules": {
"prefer-arrow-callback": 0
}
},
{
"files": [],
"parserOptions": {
"sourceType": "script",
"ecmaVersion": 2015
},
"envs": [
"node"
]
}
]
},
"prettier": {
"singleQuote": false,
"bracketSpacing": true
}
}