-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "ckan-client",
"version": "0.4.2",
"description": "ckan-client-js is a SDK in javascript for uploading files and updating metastore",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "ava test/*.test.js --verbose",
"test:watch": "ava test/*.test.js --verbose --watch",
"build": "webpack",
"build:watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/datopian/ckan-client-js"
},
"bugs": {
"url": "https://github.com/datopian/ckan-client-js/issues"
},
"keywords": [
"node",
"javascript",
"ckan"
],
"author": "datopian",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"crypto-js": "^4.0.0",
"frictionless-ckan-mapper-js": "^1.0.0",
"frictionless.js": "^0.13.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.9.5",
"ava": "^3.5.2",
"babel-loader": "^8.1.0",
"frictionless.js": "git+https://github.com/frictionlessdata/frictionless-js.git",
"jsdoc-to-markdown": "^6.0.1",
"nock": "^12.0.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}