-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 997 Bytes
/
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
{
"name": "@grown/test",
"version": "0.0.19",
"main": "index.js",
"author": "Alvaro Cabrera <[email protected]>",
"license": "MIT",
"types": "index.d.ts",
"files": [
"mock/**",
"*.d.ts",
"*.js"
],
"scripts": {
"dev": "npm run test:unit -- -w",
"test": "npm run coverage -- npm run test:unit --",
"test:ci": "npm test && nyc report -r lcov",
"test:dev": "npm test && nyc report -r html",
"test:run": "NODE_ENV=test _mocha --exit --recursive -bR spec --colors",
"test:unit": "npm run test:run tests/*.test.js --",
"coverage": "nyc -s -x '**/tests/**' -x '**/*.test.js'"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"debug": "^4.1.0",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"mock-socket": "^9.0.3"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"testdouble": "^3.16.1"
}
}