-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.2 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "descriptify",
"version": "0.1.0",
"description": "Generate an HTML5 description list from CSV input.",
"main": "index.js",
"scripts": {
"test": "npm run -s lint",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint js/*.js",
"lint:styles": "stylelint css/*.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greatislander/descriptify.git"
},
"keywords": [
"csv",
"definition",
"list",
"glossary"
],
"author": "Ned Zimmerman <ned@bight.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greatislander/descriptify/issues"
},
"homepage": "https://github.com/greatislander/descriptify#readme",
"dependencies": {
"html5-boilerplate": "^7.3.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"prettier": "^2.0.3",
"prettier-eslint": "^9.0.1",
"stylelint": "^13.3.0",
"stylelint-config-recommended": "^3.0.0"
},
"eslintConfig": {
"root": true,
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true,
"amd": true,
"browser": true,
"jquery": true
},
"globals": {
"Papa": true
},
"parserOptions": {
"ecmaFeatures": {
"globalReturn": true,
"generators": false,
"objectLiteralDuplicateProperties": false,
"experimentalObjectRestSpread": true
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"import"
],
"settings": {
"import/core-modules": [],
"import/ignore": [
"node_modules",
"\\.(coffee|scss|css|less|hbs|svg|json)$"
]
},
"rules": {
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}
]
}
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"./node_modules/prettier-stylelint/config.js"
],
"rules": {
"media-query-list-comma-space-after": "always-single-line"
}
}
}