-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "yadda",
"version": "2.2.0",
"description": "A true BDD framework for JavaScript",
"main": "./lib/index.js",
"devDependencies": {
"browserify": "^17.0.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"karma": "^6.3.7",
"karma-browserify": "^8.1.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"lint-staged": "^11.2.6",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"phantomjs-prebuilt": "^2.1.16",
"prettier": "2.4.1",
"watchify": "^4.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"scripts": {
"test": "mocha",
"karma": "karma start karma.conf.js",
"nyc": "nyc --exclude 'test/**' --exclude 'lib/plugins/**' --exclude 'lib/shims/**' --exclude 'lib/Platform.js' --reporter text-summary --reporter=lcov mocha",
"examples": "node bin/examples.js",
"browserify": "node bin/browserify.js",
"lint": "eslint .",
"lint-staged": "lint-staged",
"coverage": "nyc --report html --reporter lcov --reporter text-summary npm test"
},
"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",
"bugs": {
"url": "https://github.com/acuminous/yadda/issues"
},
"homepage": "http://acuminous.gitbooks.io/yadda-user-guide",
"dependencies": {},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm test && npm run codeclimate"
}
}
}