-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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": "bspec",
"version": "1.0.1",
"description": "A JavaScript library for structuring business rules",
"main": "./lib/bspec.js",
"scripts": {
"test": "mocha",
"browser": "gulp script",
"zuul": "zuul -- ./test/*.spec.js",
"zuul-local": "zuul --local 8080 --ui mocha-bdd -- ./test/*.spec.js",
"istanbul-local": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/gchudnov/bspec.git"
},
"keywords": [
"specification",
"ddd",
"pattern",
"business",
"rules"
],
"author": "Grigoriy Chudnov <[email protected]> (https://github.com/gchudnov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gchudnov/bspec/issues"
},
"homepage": "https://github.com/gchudnov/bspec",
"devDependencies": {
"browserify": "^13.0.0",
"coveralls": "^2.11.8",
"es6-promise": "^3.1.2",
"gulp": "^3.9.1",
"gulp-header": "^1.7.1",
"gulp-load-plugins": "^1.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"should": "^8.3.0",
"vinyl-source-stream2": "^0.1.1",
"zuul": "^3.10.1"
}
}