forked from musa-6110-fall-2023/story-map-project
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "story-map-project",
"version": "1.0.0",
"description": "* [_What's in a Vacant Lot_](examples/Vacant_Lots_AdrianLeon/), Adrián León, Max Masuda-Farkas, and Xuezhu Zhao * [_Surveillance in New Orleans_](examples/NoLA_Surveillance_BrianaCervantes/), Briana Cervantes * [_A Spatial History of House Music_](examples/House_Music_MarlanaZink/), Marlana Zink",
"main": "index.js",
"type": "module",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-google": "^0.14.0",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"google"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"browser": true
},
"ignorePatterns": ["examples/**/*.js"],
"globals": {
"L": "readonly"
},
"rules": {
"object-curly-spacing": "off",
"max-len": "off"
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"ignoreFiles": ["examples/**/*.css"],
"rules": {
"declaration-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null
}
}
}