forked from datopian/data-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.98 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.98 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
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
{
"name": "datahub-cli",
"version": "0.1.0",
"description": "CLI for working with data packages",
"main": "./lib/index.js",
"bin": {
"data": "./bin/data.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "ava -v",
"watch:test": "npm t -- --watch",
"data": "node bin/data.js",
"pack": "pkg bin/data.js -c package.json -o packed/datahub"
},
"ava": {
"require": [
"babel-core/register"
],
"failFast": true,
"files": [
"test/test_*.js"
]
},
"pkg": {
"scripts": [
"bin/*",
"lib/**/*"
],
"targets": [
"node7-linux-x64",
"node7-macos-x64"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/datopian/datahub-cli.git"
},
"keywords": [
"datahub",
"datapackage"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/datopian/datahub-cli/issues"
},
"homepage": "https://github.com/datopian/datahub-cli#readme",
"dependencies": {
"axios": "^0.16.1",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"crypto": "0.0.3",
"csv-parse": "^1.2.0",
"datapackage": "git+https://github.com/anuveyatsu/datapackage-js-temp.git",
"datapackage-identifier": "^0.4.2",
"expand-home-dir": "0.0.3",
"form-data": "^2.1.4",
"ini": "^1.3.4",
"marked": "^0.3.6",
"marked-terminal": "^2.0.0",
"minimist": "^1.2.0",
"opn": "^5.1.0",
"ora": "^1.2.0",
"progress": "^2.0.0",
"prompt": "^1.0.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"tableschema": "^1.0.0-alpha.7",
"tmp": "0.0.31",
"url-join": "^2.0.2"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-node6": "^11.0.0",
"cross-spawn": "^5.1.0",
"mocha": "^3.4.1",
"nock": "^9.0.13",
"pkg": "^4.1.0",
"sinon": "^2.3.2"
}
}