-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 971 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
{
"name": "mock-tmp",
"version": "0.0.4",
"description": "A (mostly) drop-in replacement for `mock-fs` using your tmp filesystem",
"homepage": "https://github.com/ryanblock/mock-tmp",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanblock/mock-tmp.git"
},
"bugs": "https://github.com/ryanblock/mock-tmp/issues",
"scripts": {
"lint": "eslint --fix .",
"test": "npm run lint && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit"
},
"main": "src/index.js",
"engines": {
"node": ">=16.7"
},
"license": "Apache-2.0",
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"nyc": "^15.1.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.2"
},
"files": [
"src"
],
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}