forked from o2platform/fluentnode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "fluentnode",
"version": "0.4.0",
"description": "Fluent apis for node (based on the concepts used in C#'s FluentSharp",
"main": "src/fluentnode.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script/register ./test --recursive",
"watch": "npm run test -- -R dot -w",
"docs": "cake -v -l classic doc",
"docs-dev": "cake -w -l classic doc",
"docs-publish": "cake -p -l classic doc",
"coverage-local": "onchange 'src/**/*.litcoffee' 'test/**/*.coffee' -- ./bin/lcov-code-coverage.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/o2platform/fluentnode.git"
},
"keywords": [
"fluent"
],
"author": "Dinis Cruz <dinis.cruz@owasp.org> (http://blog.diniscruz.com/)",
"license": "apache 2",
"bugs": {
"url": "https://github.com/o2platform/fluentnode/issues"
},
"homepage": "https://github.com/o2platform/fluentnode",
"devDependencies": {
"chai": "^1.9.1",
"docco": "^0.6.3",
"mocha": "^1.21.4",
"onchange": "0.0.2"
},
"dependencies": {
"coffee-script": "^1.8.0"
}
}