-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.18 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
{
"name": "fluentnode",
"version": "0.7.1",
"description": "Fluent apis for node (based on the concepts used in C#'s FluentSharp",
"main": "target/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",
"compile": "coffee --output ./target/src --compile ./src && coffee --output ./target/test --compile ./test"
},
"repository": {
"type": "git",
"url": "https://github.com/o2platform/fluentnode.git"
},
"keywords": [
"fluent"
],
"author": "Dinis Cruz <[email protected]> (http://blog.diniscruz.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/o2platform/fluentnode/issues"
},
"homepage": "https://github.com/o2platform/fluentnode",
"devDependencies": {
"chai": "^4.1.2",
"docco": "^0.7.0",
"mocha": "^3.5.3"
},
"dependencies": {
"coffee-script": "^1.12.7"
}
}