-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "artProject",
"version": "0.0.0",
"description": "Maintains and displays city curated artwork.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "xo"
},
"keywords": [
"code-for-america"
],
"author": "Juan Orozco",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.2.3",
"del": "^1.1.1",
"documentjs": "^0.3.0-pre.1",
"gulp": "^3.8.11",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.3",
"gulp-util": "^3.0.4",
"require-dir": "^0.1.0",
"xo": "^0.12.1"
},
"dependencies": {
"bit-data-suite": "git+https://github.com/bitovi-components/bit-data-suite.git#master",
"bootstrap": "^3.3.6",
"can": "^2.3.15",
"jquery": "^3.3.0",
"leaflet": "^0.7.7",
"lodash": "^4.3.0",
"promise": "^7.1.1",
"steal": "^0.14.0",
"steal-tools": "^0.14.0"
},
"system": {
"ignoreBrowser": true,
"paths": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js",
"bootstrap/*": "./node_modules/bootstrap/js/*.js",
"components/*": "./src/components/*.js",
"models/*": "./src/models/*.js",
"pages/*": "./src/pages/*.js",
"utils/*": "./src/utils/*.js"
},
"npmAlgorithm": "flat",
"npmIgnore": [
"devDependencies"
]
},
"xo": {
"envs": [
"node"
],
"space": 4,
"rules": {
"no-lonely-if": 0,
"no-else-return": 0,
"spaced-comment": 0,
"no-warning-comments": 0
},
"globals": [
"steal"
],
"ignore": [
"node_modules/**",
"dist/**",
"_dist/**",
"docs/**"
]
}
}