-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.58 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
{
"name": "bedrock",
"version": "1.1.0",
"description": "System for data inventory and dependency management",
"main": "index.js",
"bin": {
"bedrock": "./bin/bedrock.js",
"blueprint": "./bin/blueprint.js"
},
"scripts": {
"bedrock": "node ./bin/bedrock.js --start=./working_directory",
"blueprint": "node ./bin/blueprint.js --start=./working_directory"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cityofasheville/bedrock.git"
},
"keywords": [
"data management",
"open data"
],
"author": "Eric Jackson <[email protected]>",
"license": "gpl-3.0",
"homepage": "https://github.com/cityofasheville/bedrock",
"dependencies": {
"bunyan": "^1.8.12",
"coa-node-logging": "^3.0.0",
"dotenv": "^2.0.0",
"mssql": "^4.2.3",
"nodemailer": "^4.6.8",
"pg": "^7.6.1",
"pg-pool": "^2.0.4",
"toposort": "^2.0.2"
},
"optionalDependencies": {
"msnodesqlv8": "^0.3.1"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"plugin:import/errors"
],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"no-console": 0,
"no-prototype-builtins": 0,
"max-len": [
"error",
100,
{
"ignoreTrailingComments": true
}
]
},
"env": {
"mocha": true
}
}
}