-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.32 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": "fruitjs",
"preferGlobal": true,
"version": "0.7.0",
"author": "Andrew Hushbeck <[email protected]> (http://imgineme.com)",
"description": "FruitJS (pronounced Fruit Juice) is a tool for compiling markdown pages into technical documentation sites.",
"bin": {
"fruitjs": "bin/cli"
},
"main": "./fruit.js",
"keywords": [
"markdown",
"documentation",
"docs"
],
"dependencies": {
"rsvp": "~2.0.4",
"underscore": "~1.5.2",
"less": "~1.7.5",
"optimist": "~0.6.1",
"mkdirp": "~0.3.5",
"marked": "~0.3.3"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/*.js test/Unit/*.js",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/*.js test/Unit/*.js",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/*.js test/Unit/*.js"
},
"devDependencies": {
"fs-extra": "~0.18.x",
"mocha": "~2.2.5",
"istanbul": "~0.3.15",
"coveralls": "~2.11.2"
},
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"repository": {
"type": "git",
"url": "https://github.com/ktsashes/FruitJS.git"
},
"homepage": "http://ktsashes.github.io/FruitJS/",
"directories": {
"doc": "./docs",
"lib": "./src"
}
}