-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (60 loc) · 1.46 KB
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
{
"name": "eslint-plugin-bdd",
"version": "3.0.0",
"description": "ESLint plugin with rules to lint BDD specs.",
"author": "Nate-Wilkins <[email protected]> (https://github.com/Nate-Wilkins)",
"keywords": [
"eslintplugin",
"eslint-plugin",
"eslint",
"bdd",
"tdd",
"testing",
"focus",
"exclude",
"jasmine",
"mocha",
"fit",
"fdescribe",
"ddescribe",
"iit"
],
"repository": {
"type": "git",
"url": "http://github.com/nate-wilkins/eslint-plugin-bdd"
},
"homepage": "http://github.com/nate-wilkins/eslint-plugin-bdd",
"bugs": "http://github.com/nate-wilkins/eslint-plugin-bdd/issues",
"main": "lib/bdd.js",
"scripts": {
"test:lint": "yarn eslint './**/*.js'",
"test": "yarn nyc yarn mocha tests --recursive && yarn test:lint",
"release": "yarn np"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.5",
"@babel/preset-flow": "^7.14.5",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsort": "^1.1.2",
"expect.js": "^0.3.1",
"mocha": "^9.0.0",
"np": "^7.5.0",
"nyc": "^15.1.0",
"prettier": "2.3.1",
"typescript": "^4.3.2"
},
"engines": {
"node": ">=0.10.0"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}