-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
106 lines (106 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "data-cli",
"version": "0.10.1",
"description": "CLI for working with data packages",
"main": "./lib/index.js",
"bin": {
"data": "./bin/data.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "ava -v",
"push:test": "ava -v test/push/ -m 'push*'",
"watch:test": "npm t -- --watch",
"lint": "xo --quiet",
"data": "node bin/data.js",
"gzip": "rm -rf packed/*.gz && ls packed/data* | xargs gzip -k",
"pack": "pkg bin/data.js -c package.json -o packed/data --options no-warnings && npm run gzip",
"precommit": "npm run lint && npm run build"
},
"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/*/**"
]
},
"ava": {
"failFast": false,
"files": [
"test/*test.js"
]
},
"pkg": {
"scripts": [
"bin/*",
"lib/**/*"
],
"targets": [
"node7-linux-x64",
"node7-macos-x64",
"node7-win-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/datahq/data-cli.git"
},
"keywords": [
"data",
"data package",
"datahub",
"datapackage"
],
"author": "Rufus Pollock and DataHQ",
"license": "ISC",
"bugs": {
"url": "https://github.com/datahq/data-cli/issues"
},
"homepage": "https://datahub.io/docs",
"dependencies": {
"ansi-escapes": "^3.0.0",
"boxen": "^1.3.0",
"chalk": "^2.3.0",
"clipboardy": "^1.2.3",
"data.js": "^0.11.5",
"datahub-client": "^0.5.8",
"first-run": "^1.2.0",
"global-packages": "^1.0.2",
"human-readable-ids": "^1.0.3",
"inquirer": "^5.1.0",
"inquirer-test": "^2.0.1",
"jsonlint": "^1.6.2",
"marked": "^0.3.6",
"marked-terminal": "^2.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ora": "^1.3.0",
"pkg": "4.2.5",
"progress": "^2.0.0",
"raven": "^2.4.2",
"universal-analytics": "^0.4.16",
"unzip": "^0.1.11",
"update-notifier": "^2.3.0",
"url-join": "^2.0.2",
"xlsx": "^0.17.0"
},
"devDependencies": {
"ava": "^0.25.0",
"cross-spawn": "^5.1.0",
"stream-to-array": "^2.3.0",
"xo": "^0.18.2"
},
"resolutions": {
"graceful-fs": "^4.2.4"
}
}