-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.36 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
{
"name": "biojs-vis-eventmap",
"description": "View events from TeSS on a map",
"version": "0.1.0",
"homepage": "https://github.com/ElixirTeSS/biojs-vis-eventmap",
"author": {
"name": "Niall Beard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ElixirTeSS/biojs-vis-eventmap.git"
},
"bugs": {
"url": "https://github.com/ElixirTeSS/vis-eventmap/issues"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"build": "mkdirp build && browserify -r ./:vis-eventmap -o build/eventmap.js",
"build-browser": "npm run build",
"prepublish": "npm run build",
"watch": "watchify -r ./:vis-eventmap -v -o build/eventmap.js",
"w": "prunner \"npm run sniper\" \"npm run watch\"",
"sniper": "sniper ."
},
"dependencies": {
"biojs-rest-tessapi": "^0.1.2",
"google-maps": "^3.2.1"
},
"devDependencies": {
"mkdirp": "^0.5.0",
"browserify": "6.x",
"sniper": "0.x",
"watchify": "^1.0.6",
"prunner": "1.x",
"chai": "1.x",
"mocha": "1.x"
},
"sniper": {
"js": [
"/build/eventmap.js"
],
"snippets": [
"examples"
],
"first": "simple"
},
"keywords": [
"elixir",
"tess",
"map view",
"training",
"life science",
"conferences",
"planning",
"biojs"
]
}