-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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": "biojs-rest-tessapi",
"description": "API client to interface with the TeSS Rest API. Retrieve a list of metedata about upcoming Life science events, training materials, and other training opportunities. Return results filtered by metadata facets",
"version": "0.1.2",
"homepage": "https://github.com/ElixirTeSS/biojs-rest-tessapi",
"author": {
"name": "Niall Beard",
"email": "niall.beard@manchester.ac.uk"
},
"repository": {
"type": "git",
"url": "git://github.com/ElixirTeSS/biojs-rest-tessapi.git"
},
"bugs": {
"url": "https://github.com/ElixirTeSS/biojs-rest-tessapi/issues"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"build": "mkdirp build && browserify -r ./:biojs-rest-tessapi -o build/tessapi.js",
"build-browser": "npm run build",
"prepublish": "npm run build",
"watch": "watchify -r ./:biojs-rest-tessapi -v -o build/tessapi.js",
"w": "prunner \"npm run sniper\" \"npm run watch\"",
"sniper": "sniper ."
},
"dependencies": {
"superagent": "^1.7.1"
},
"devDependencies": {
"mkdirp": "^0.5.0",
"browserify": "6.x",
"sniper": "0.x",
"watchify": "^1.0.6",
"prunner": "1.x",
"chai": "1.x",
"mocha": "~2.3.4",
"sinon": "1.17.3",
"expect.js": "~0.3.1"
},
"sniper": {
"js": [
"/build/tessapi.js"
],
"snippets": [
"examples"
],
"first": "simple"
},
"keywords": [
"elixir",
"tess",
"training",
"events",
"api",
"materials",
"training events",
"bioinformatics",
"rest",
"biojs"
]
}