-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-test-wrapper",
"version": "0.1.1",
"description": "An elegant and scalable solution for HTTP testing in Node.js",
"main": "index.js",
"files": [
"/lib"
],
"scripts": {
"clean": "rimraf lib",
"copy:assets": "rsync -a --exclude=.eslintrc --exclude=.prettierrc src/assets lib",
"compile": "babel src -d lib --ignore src/assets",
"build": "yarn compile && yarn copy:assets",
"test": "jest",
"lint": "eslint .",
"prepublishOnly": "yarn clean && yarn build && yarn lint && yarn test"
},
"pre-commit": [
"clean",
"build",
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mutaimwiti/node-test-wrapper.git"
},
"keywords": [
"cli",
"tdd",
"bdd",
"node",
"auth",
"http",
"test",
"testing",
"express",
"wrapper",
"expressjs",
"supertest",
"chai-http",
"auth-wrapper",
"test-wrapper",
"node-test-wrapper"
],
"author": "Mutai Mwiti",
"license": "MIT",
"bugs": {
"url": "https://github.com/mutaimwiti/node-test-wrapper/issues"
},
"homepage": "https://github.com/mutaimwiti/node-test-wrapper#readme",
"bin": {
"test-wrapper": "./index.js",
"node-test-wrapper": "./index.js"
},
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^7.0.0",
"is-invalid-path": "^1.0.2",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"prettier": "1.19.1",
"rimraf": "^3.0.0"
},
"jest": {
"roots": [
"test"
]
}
}