forked from frictionlessdata/datapackage-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3 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
110
111
{
"name": "datapackagist",
"version": "1.0.0",
"description": "A web UI for creating, editing and validating Data Packages.",
"keywords": [
"data package",
"frictionless data",
"open data",
"open knowledge"
],
"main": "datapackagist/scripts/app.js",
"dependencies": {
"backbone": "^1.2.0",
"backbone-base": "^0.0.2",
"bluebird": "^2.9.31",
"body-parser": "^1.14.1",
"csv": "^0.4.5",
"datapackage-from-remote": "git+https://github.com/okfn/datapackage-from-remote-js.git",
"datapackage-outfile": "^0.1.0",
"datapackage-registry": "0.2.1",
"datapackage-validate": "0.2.5",
"deep-compact": "^0.2.4",
"deep-diff": "^0.3.2",
"deep-empty": "^0.1.4",
"detect-browser": "^1.1.1",
"es6-promise": "^3.0.2",
"express": "^4.13.1",
"fileapi": "^2.0.10",
"get-uri": "^0.1.3",
"glob": "^5.0.6",
"goodtables": "git+https://github.com/okfn/goodtables-js.git",
"highlight-redux": "*",
"i": "^0.3.3",
"isomorphic-fetch": "^2.2.0",
"jquery": "2.1.4",
"json-editor": "^0.7.18",
"json-table-schema": "0.1.0",
"marked": "^0.3.5",
"papaparse": "git+https://github.com/mholt/PapaParse.git",
"request": "^2.65.0",
"resolve": "^1.1.6",
"superagent-bluebird-promise": "^2.0.2",
"underscore": "^1.8.3",
"validator": "^3.41.2"
},
"devDependencies": {
"browser-sync": "^2.7.1",
"browserify": "^10.2.0",
"browserify-handlebars": "^1.0.0",
"chai": "^2.3.0",
"connect-history-api-fallback": "^1.1.0",
"depcheck": "^0.4.7",
"gulp": "^3.8.11",
"gulp-concat": "^2.5.2",
"gulp-gh-pages": "^0.5.1",
"gulp-minify-css": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"handlebars": "^3.0.3",
"mocha": "^2.2.5",
"nock": "^2.13.0",
"sinon": "^1.16.1",
"streamqueue": "^1.1.0",
"superagent": "^1.3.0",
"uglify-js": "^2.4.21",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.1",
"zombie": "^4.0.13"
},
"engines": {
"iojs": "v2.3.x",
"npm": "v2.13.x"
},
"scripts": {
"build": "gulp",
"test": "mocha tests --recursive --harmony --reporter spec",
"start": "node datapackagist",
"start_dev": "gulp dev & node datapackagist",
"deploy": "git push heroku master"
},
"author": {
"name": "Open Knowledge",
"email": "[email protected]",
"url": "https://okfn.org/"
},
"contributors": [
{
"name": "Paul Walsh",
"email": "[email protected]",
"url": "http://pwalsh.me/"
},
{
"name": "Artem Rudenko",
"email": "[email protected]",
"url": "http://ottofeller.com/"
},
{
"name": "Alexey Kislyakov",
"email": "[email protected]",
"url": "http://ottofeller.com/"
}
],
"homepage": "https://github.com/okfn/datapackagist",
"bugs": "https://github.com/okfn/datapackagist/issues",
"repository": {
"type": "git",
"url": "https://github.com/okfn/datapackagist.git"
},
"license": "MIT"
}