-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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": "ya-done-api",
"version": "1.0.1",
"description": "A BDD based framework to automate APIs",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"test": "mocha --recursive --require @babel/polyfill --require @babel/register"
},
"lint-staged": {
"*.js": [
"./node_modules/eslint/bin/eslint.js --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/britishgas-engineering/ya-done-api.git"
},
"author": "Biplav Ghosal",
"license": "ISC",
"bugs": {
"url": "https://github.com/britishgas-engineering/ya-done-api/issues"
},
"homepage": "https://github.com/britishgas-engineering/ya-done-api#readme",
"dependencies": {
"should": "13.2.3",
"expect": "26.4.2",
"chai": "4.2.0",
"mocha": "^8.1.3",
"yadda": "2.1.0",
"spy": "1.0.0",
"axios": "0.20.0"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/cli": "7.10.1",
"@babel/polyfill": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/register": "7.10.1",
"babel-eslint": "^10.0.1",
"eslint": "^4.19.0",
"eslint-plugin-mocha": "^5.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3"
}
}