-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.25 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": "lexicon-rainbow",
"version": "0.0.27",
"description": "Lexicon-Rainbow Visualization Module",
"keywords": [
"visualization",
"parallel coordinates",
"sankey",
"svg",
"lexicon",
"interactive",
"mapping",
"d3",
"javascript",
"biojs",
"bionode"
],
"main": "dev/lexiconRainbow.d3v4.dev.js",
"jsnext:main": "dev/lexiconRainbow.d3v4.dev.js",
"scripts": {
"prepublishOnly": "node tests/nodejsTest.js",
"test": "node tests/nodejsTest.js",
"postinstall": "node tests/nodejsTest.js",
"custom-start": "./node_modules/.bin/eslint ./dev/lexiconRainbow.d3v4.dev.js && npm run custom-next-1",
"custom-next-1": "./node_modules/.bin/eslint ./dev/lexiconRainbow.d3v3.dev.js && npm run custom-next-2",
"custom-next-2": "./node_modules/.bin/js-beautify ./dev/lexiconRainbow.d3v4.dev.js --config ./.jsbeautifyrc.json -o ./pretty/lexiconRainbow.d3v4.pretty.js && npm run custom-next-3",
"custom-next-3": "./node_modules/.bin/js-beautify ./dev/lexiconRainbow.d3v3.dev.js --config ./.jsbeautifyrc.json -o ./pretty/lexiconRainbow.d3v3.pretty.js && npm run custom-next-4",
"custom-next-4": "./node_modules/.bin/uglifyjs ./dev/lexiconRainbow.d3v4.dev.js -c -m -o ./min/lexiconRainbow.d3v4.min.js && npm run custom-next-5",
"custom-next-5": "./node_modules/.bin/uglifyjs ./dev/lexiconRainbow.d3v3.dev.js -c -m -o ./min/lexiconRainbow.d3v3.min.js && echo ':files generated:'"
},
"repository": {
"type": "git",
"url": "https://github.com/IbrahimTanyalcin/lexicon-rainbow.git"
},
"author": {
"name": "ibrahim Tanyalcin",
"url": "ibrahimtanyalcin.com",
"email": "[email protected]"
},
"license": "Adapted BSD 3-Clause",
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglify-js": "^3.0.28"
},
"dependencies": {
"d3": "^4.10.0"
},
"sniper": {
"js": [
"http://d3js.org/d3.v4.min.js",
"http://cdn.rawgit.com/IbrahimTanyalcin/lexicon-rainbow/170be4b9/min/lexiconRainbow.d3v4.min.js"
],
"snippets": [
"snippets"
],
"first": "proteins"
}
}