forked from acuminous/yadda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "yadda",
"version": "0.11.2",
"description": "A true BDD framework for JavaScript",
"main": "./lib/index.js",
"devDependencies": {
"mocha": "*",
"browserify": "*",
"jshint": "^2.5.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "make test",
"istanbul": "NODE_ENV=test istanbul cover _mocha -- -u exports --reporter spec",
"examples": "node bin/examples.js",
"browserify": "node bin/browserify.js",
"jshint": "find . -name *.js | grep -vE '/node_modules/|/dist/|/components/|/component-browser/build/|/coverage/|qunit-1.10.0.js' | xargs ./node_modules/.bin/jshint"
},
"repository": {
"type": "git",
"url": "git://github.com/acuminous/yadda.git"
},
"keywords": [
"BDD",
"Specification",
"Natural",
"Test",
"Behaviour",
"Driven",
"Jasmine",
"Mocha",
"QUnit",
"Nodeunit"
],
"author": "Stephen Cresswell",
"license": "Apache2",
"readmeFilename": "README.md",
"gitHead": "4754e8449c4f6d28e6357059287079a44a0dad29"
}