-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "@grimen/rootpath",
"version": "0.1.2",
"description": "Node.js project/package root path detection.",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/grimen/node-rootpath.git"
},
"bugs": {
"url": "https://github.com/grimen/node-rootpath/issues"
},
"homepage": "https://github.com/grimen/node-rootpath#readme",
"author": "Jonas Grimfelt <jonas@markable.ai> (https://github.com/grimen)",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npx jest",
"test-ci": "npx jest --runInBand --forceExit --detectOpenHandles --coverage",
"test-dev": "npx jest --watch",
"validate": "npx eslint \"**/*.js\"",
"release": "./bin/release",
"coverage": "npx jest --coverage",
"coverage-codecov": "npx codecov"
},
"dependencies": {
"@grimen/mybad": "^0.2.1",
"chalk": "^3.0.0",
"debug": "^4.1.1",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"jest": "^24.9.0"
},
"jest": {
"bail": true,
"verbose": true,
"testRegex": "test_.*\\.js",
"testEnvironment": "node"
}
}