-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 953 Bytes
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
{
"name": "dex",
"version": "0.1.0",
"description": "dex.js : a framework for data exploration",
"license": "Apache-2.0",
"keywords": [
"chart",
"charting",
"data",
"visualization"
],
"homepage": "https://dexjs.net",
"email": "patrick145@msn.com",
"url": "https://dexjs.net",
"files": [
"src/dex.js"
],
"main": "diest/dex.js",
"dependencies": {
"jquery": "^3.4.1",
"jqueryui": "latest",
"rollup": "^1.26.3",
"shx": "^0.3.2"
},
"devDependencies": {
"esdoc": "latest",
"esdoc-lint-plugin": "latest",
"esdoc-standard-plugin": "latest",
"jasmine": "latest",
"terser-webpack-plugin": "latest",
"watch": "latest"
},
"scripts": {
"docs": "esdoc -c esdoc.json",
"src": "shx echo *** BEGIN: SRC *** && rollup -c rollup.config.js && echo *** END: SRC ***",
"watch-doc": "watch \"npm run docs\" src/js",
"watch-src": "watch \"npm run src\" src/js"
}
}