-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "ckan-embed",
"version": "1.0.4",
"description": "Embed information from CKAN data portals into other websites.",
"keywords": [
"ckan",
"portal",
"data",
"dataset",
"embed"
],
"repository": {
"type": "git",
"url": "http://github.com/opendata-swiss/ckan-embed.git"
},
"author": {
"name": "Oleg Lavrovsky",
"url": "http://datalets.ch"
},
"contributors": [],
"license": "MIT",
"devDependencies": {
"browserify": "^13.3",
"browserify-shim": "^3.8",
"chai": "^3.5",
"jshint": "^2.11",
"mocha": "^10",
"terser-webpack-plugin": "^3.0.0",
"uglify-js": "^2.8",
"watchify": "^4",
"webpack": "^5.94.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"deploy": "yarn lint && yarn test && yarn build && yarn postbuild",
"lint": "jshint src/",
"clean": "rm -f dist/*",
"test": "mocha --exit --timeout 5000 --recursive test/",
"watch": "watchify src/embed.js -v -d -s CKANembed -o dist/ckan-embed.js",
"build": "browserify src/embed.js -d -s CKANembed > dist/ckan-embed.js",
"postbuild": "uglifyjs dist/ckan-embed.js -cm > dist/ckan-embed.min.js",
"dev": "webpack --mode development && python -m http.server",
"webpack": "webpack --mode production"
},
"main": "src/embed.js",
"browserify-shim": {
"jquery": "$",
"underscore": "_",
"ckan": "global:CKAN"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"dependencies": {
"ckan": "git+ssh://git@github.com/okfn/ckan.js.git",
"jquery": "^3.5.0"
},
"engines": {
"yarn": ">= 1.0.0"
}
}