-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "@solgenomics/brapi-graphical-filtering",
"version": "0.1.1",
"description": "",
"main": "build/GraphicalFilter.js",
"scripts": {
"prepare": "rm -rf build && mkdir build && rollup -f umd -n GraphicalFilter -o build/GraphicalFilter.js -- main.js",
"build_example": "rm -rf example && mkdir example && wrapbrapp && cp build/GraphicalFilter.js node_modules/@solgenomics/brapijs/build/BrAPI.js example/",
"version": "npm run prepare && npm run build_example && git add example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solgenomics/BrAPI-Graphical-Filtering.git"
},
"author": "David Lyon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solgenomics/BrAPI-Graphical-Filtering/issues"
},
"homepage": "https://github.com/solgenomics/BrAPI-Graphical-Filtering#readme",
"devDependencies": {
"@solgenomics/brapp-wrapper": "^1.1.0"
},
"peerDependencies": {
"jquery":"^3.0.0",
"bootstrap":"^3.3.0",
"@solgenomics/brapijs": "^0.3.6",
"d3": "^4.11.0"
},
"brapp": {
"out": "example/index.html",
"name": "Graphical Filtering",
"link": "https://github.com/solgenomics/BrAPI-Graphical-Filtering",
"forward": "example_src/forward.html",
"main": "example_src/main.html",
"scripts": "example_src/scripts.html"
}
}