This repository has been archived by the owner on Jul 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 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
{
"name": "fantasy-birds",
"version": "0.1.0",
"description": "",
"main": "fantasy-birds.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --report html",
"test:doc": "node_modules/.bin/doctest --prefix . --nodejs '--harmony' --module commonjs src/*.js ",
"codecov": "npm run test && codecov",
"docs": "npm run test:doc && cp README.md.header README.md && transcribe --url './{filename}#L{line}' -- src/*.js >> README.md",
"release-major": "xyz --repo [email protected]:fantasyland/fantasy-birds.git --increment major",
"release-minor": "xyz --repo [email protected]:fantasyland/fantasy-birds.git --increment minor",
"release-patch": "xyz --repo [email protected]:fantasyland/fantasy-birds.git --increment patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fantasyland/fantasy-birds.git"
},
"keywords": [
"fantasyland",
"combinators",
"birds"
],
"files": [
"fantasy-birds.js",
"src/*.js"
],
"author": "stoeffel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fantasyland/fantasy-birds/issues"
},
"homepage": "https://github.com/fantasyland/fantasy-birds#readme",
"devDependencies": {
"codecov": "^1.0.1",
"doctest": "^0.10.0",
"istanbul": "^0.4.2",
"jsverify": "^0.7.1",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.0.0",
"transcribe": "^0.3.0",
"xyz": "^0.5.0"
},
"dependencies": {
"fantasy-combinators": "git+https://github.com/fantasyland/fantasy-combinators.git",
"fantasy-helpers": "0.0.1"
}
}