-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "core-datasets-tools",
"version": "1.0.0",
"description": "Tools for working with core datasets",
"main": "index.js",
"scripts": {
"test": "xo --quiet && ava -v",
"lint": "xo --quiet"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"no-var": "warn",
"no-use-before-define": 1,
"no-await-in-loop": 1,
"import/prefer-default-export": 1,
"no-negated-condition": 1,
"guard-for-in": 1
},
"ignores": [
"test/fixtures/*/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/datahq/core-datasets-tools.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/datahq/core-datasets-tools/issues"
},
"homepage": "https://github.com/datahq/core-datasets-tools#readme",
"dependencies": {
"ava": "^0.21.0",
"chalk": "^2.0.1",
"csv-string": "^2.3.2",
"data.js": "^0.9.2",
"datahub-cli": "git+https://github.com/datahq/datahub-cli.git",
"datapackage-normalize": "git+https://github.com/datahq/datapackage-normalize-js.git",
"dotenv": "^4.0.0",
"json2csv": "^3.10.0",
"lodash": "^4.17.4",
"simple-git": "^1.72.0",
"sinon": "^2.4.1",
"stream-to-array": "^2.3.0",
"tableschema": "^1.4.1"
},
"devDependencies": {
"xo": "^0.18.2"
}
}