-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
109 lines (109 loc) · 4.24 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
107
108
109
{
"name": "datapackage",
"version": "1.1.10",
"description": "Utilities to work with Data Packages as defined on specs.frictionlessdata.io",
"license": "MIT",
"main": "lib/index.js",
"engines": {
"node": ">=4"
},
"files": [
"lib",
"dist",
"src"
],
"scripts": {
"build": "npm run compile && npm run bundle",
"bundle": "webpack --progress --hide-modules && NODE_ENV=production webpack --progress --hide-modules",
"compile": "babel src --out-dir lib --copy-files",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"format": "prettier --write '{src,test}/**/*.js' && eslint --fix '{src,test}/**/*.js'",
"lint": "prettier --check '{src,test}/**/*.js' && eslint '{src,test}/**/*.js'",
"pretest": "npm run lint",
"profiles": "npm run profiles:registry && npm run profiles:data-package && npm run profiles:tabular-data-package && npm run profiles:fiscal-data-package && npm run profiles:data-resource && npm run profiles:tabular-data-resource",
"profiles:registry": "wget -O src/profiles/registry.json https://specs.frictionlessdata.io/schemas/registry.json",
"profiles:data-package": "wget -O src/profiles/data-package.json https://specs.frictionlessdata.io/schemas/data-package.json",
"profiles:tabular-data-package": "wget -O src/profiles/tabular-data-package.json https://specs.frictionlessdata.io/schemas/tabular-data-package.json",
"profiles:fiscal-data-package": "wget -O src/profiles/fiscal-data-package.json https://specs.frictionlessdata.io/schemas/fiscal-data-package.json",
"profiles:data-resource": "wget -O src/profiles/data-resource.json https://specs.frictionlessdata.io/schemas/data-resource.json",
"profiles:tabular-data-resource": "wget -O src/profiles/tabular-data-resource.json https://specs.frictionlessdata.io/schemas/tabular-data-resource.json",
"test": "NODE_ENV=testing nyc mocha && karma start"
},
"dependencies": {
"axios": "^0.21.1",
"glob": "^7.1.2",
"jschardet": "^1.5.1",
"json-pointer": "^0.6.0",
"jszip": "^3.1.5",
"lodash": "^4.13.1",
"regenerator-runtime": "^0.11.0",
"stream-to-async-iterator": "^0.2.0",
"tableschema": "^1.11.5",
"tmp": "0.0.33",
"tv4": "^1.2.7",
"url-join": "^2.0.1"
},
"devDependencies": {
"axios-mock-adapter": "^1.8.1",
"babel": "^6.5.2",
"babel-cli": "^6.24.1",
"babel-eslint": "^10.1.0",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-es2017-object-entries": "0.0.3",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"coveralls": "^3.0.6",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"jsdom": "^15.1.1",
"json-loader": "^0.5.4",
"karma": "^4.3.0",
"karma-jsdom-launcher": "^6.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.2.4",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"mocha": "^6.2.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^14.1.1",
"prettier": "^2.0.2",
"referencer": "^0.2.5",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"webpack": "^2.2.0",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^2.4.0"
},
"author": {
"name": "Open Knowledge",
"email": "info@okfn.org",
"url": "https://okfn.org/"
},
"homepage": "https://github.com/frictionlessdata/datapackage-js",
"bugs": "https://github.com/frictionlessdata/datapackage-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/frictionlessdata/datapackage-js.git"
},
"keywords": [
"data package",
"frictionless data",
"open data",
"open knowledge"
]
}