-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "biojs-io-fasta",
"description": "Parses FASTA files",
"version": "0.1.17",
"homepage": "http://github.com/biojs-io/biojs-io-fasta",
"repository": {
"type": "git",
"url": "git://github.com/biojs-io/biojs-io-fasta"
},
"author": {
"name": "greenify",
"email": "greeenify@gmail.com"
},
"dependencies": {
"biojs-io-parser": "^1.0.0",
"msa-seqtools": "^0.1.8"
},
"devDependencies": {
"browserify": "~4.2.0",
"coffee-script": "^1.7.1",
"coffeeify": "^0.7.0",
"mocha": "~1.20.1",
"nock": "^0.43.0",
"request": "^2.49.0",
"uglify-js": "~2.4.15",
"underscore": "^1.8.3"
},
"keywords": [
"biojs",
"fasta",
"sequence"
],
"shields": {
"build": {
"img": "https://travis-ci.org/biojs-io/biojs-io-fasta.svg?branch=master",
"href": "https://travis-ci.org/biojs-io/biojs-io-fasta"
}
},
"main": "lib/index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha --ui qunit --reporter spec -C",
"prepublish": "npm run build-browser; npm run compile",
"compile": "node_modules/coffee-script/bin/coffee --bare --compile --output lib/ src/*.coffee",
"build-browser": "npm run compile && mkdir -p build; node_modules/browserify/bin/cmd.js -t coffeeify --extension='.coffee' -r ./:biojs-io-fasta > build/biojs_io_fasta.min.js"
},
"license": "Apache 2"
}