-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.19 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
{
"name": "dlst-studio",
"version": "1.0.0",
"description": "Jekyll site for the Digital Humanities @Columbia",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muziejus/dlst-studio.git"
},
"keywords": [],
"author": "Moacir P. de Sá Pereira <[email protected]> (http://moacir.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/muziejus/dlst-studio/issues"
},
"homepage": "https://github.com/muziejus/dlst-studio#readme",
"devDependencies": {
"acorn": "^6.4.1",
"prettier": "^2.0.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"xo": "^0.28.0"
},
"xo": {
"envs": [
"amd"
],
"globals": [
"it",
"describe"
],
"prettier": true,
"space": true,
"rules": {
"require-await": 0,
"quotes": [
"error",
"double"
]
},
"overrides": [
{
"files": "features/**/*.js",
"rules": {
"new-cap": 0
}
}
]
},
"prettier": {
"singleQuote": false,
"bracketSpacing": true
}
}