forked from acuminous/yadda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
49
50
{
"name": "yadda",
"version": "0.17.6",
"description": "A true BDD framework for JavaScript",
"main": "./lib/index.js",
"devDependencies": {
"browserify": "10.2.6",
"istanbul": "^0.4.2",
"jshint": "^2.5.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.2",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "*",
"phantomjs-prebuilt": "^2.1.5",
"watchify": "^3.7.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "mocha --recursive --reporter spec test",
"karma": "karma start karma.conf.js",
"istanbul": "istanbul cover _mocha -- -u exports --reporter spec",
"examples": "node bin/examples.js",
"browserify": "node bin/browserify.js",
"jshint": "find . -name *.js | grep -vE 'karma.conf.js|/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": "Apache-2.0",
"readmeFilename": "README.md",
"gitHead": "4754e8449c4f6d28e6357059287079a44a0dad29"
}