-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.35 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
{
"name": "sequence-viewer",
"description": "A protein sequence viewer written in javascript",
"version": "0.2.2",
"homepage": "https://github.com/calipho-sib/sequence-viewer",
"authors": [
"Mathieu Schaeffer <mat.schaeff@gmail.com>",
"Calipho Team <ndu@isb-sib.ch>"
],
"repository": {
"type": "git",
"url": "https://github.com/calipho-sib/sequence-viewer.git"
},
"licenses": [
{
"type": "GNU GPL v2"
}
],
"main": "lib/index.js",
"style": "css/*.css",
"scripts": {
"build": "mkdir -p build && browserify -r ./:sequence-viewer -o build/viewer.js",
"build-browser": "npm run build",
"build-all": "npm run build && npm run css",
"watch": "watchify -r ./:sequence-viewer -v -o build/viewer.js",
"w": "prunner \"npm run sniper\" \"npm run watch\" \"npm run watch-css\"",
"sniper": "sniper .",
"css": "parcelify ./ -c build/bundle.css",
"watch-css": "parcelify -w ./ -c build/bundle.css --loglevel verbose",
"dist": "grunt && grunt concating"
},
"dependencies": {
"bower": "^1.3.12",
"grunt-cli": "^0.1.13",
"handlebars": "x.x.x",
"jquery": "x.x.x"
},
"devDependencies": {
"mkdirp": "^0.5.0",
"browserify": "6.x",
"sniper": "0.x",
"watchify": "^1.0.6",
"prunner": "1.x",
"parcelify": "0.x",
"grunt": "^0.4.5",
"grunt-bower-concat": "^0.4.0",
"grunt-bump": "^0.3.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-uglify": "~0.5.0",
"grunt-bower-task": "^0.4.0",
"grunt-concat-css": "^0.3.1",
"grunt-connect": "^0.2.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-connect": "~0.5.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-cssmin": "~0.6.1",
"grunt-contrib-handlebars": "^0.10.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-hustler": "0.11.2",
"grunt-regarde": "~0.1.1",
"grunt-serve": "^0.1.6",
"load-grunt-tasks": "^0.6.0"
},
"sniper": {
"js": ["/build/viewer.js"],
"css": ["/build/bundle.css"],
"snippets": ["snippets"],
"first": "simple"
},
"keywords": [
"sib", "isb", "calipho",
"sequence",
"protein",
"nextprot",
"uniprot",
"viewer",
"biojs"
],
"readmeFilename": "README.md"
}