-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.4 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
48
49
50
51
52
53
{
"name": "resolve-package-path",
"description": "a special purpose fast memoizing way to resolve a node modules package.json",
"version": "4.0.3",
"repository": "[email protected]:stefanpenner/resolve-package-path.git",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"dependencies": {
"path-root": "^0.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.1.0",
"fixturify-project": "^4.0.0",
"fs-extra": "^10.0.0",
"mocha": "^9.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"prepare": "tsc -b .",
"watch": "tsc --watch .",
"clean": "tsc -b --clean .",
"test": "ts-mocha tests/*-test.ts",
"test:inspect": "ts-mocha inspect tests/*-test.ts",
"test:ts:debug": "ts-mocha debug tests/*-test.ts",
"lint": "eslint ."
},
"files": [
"lib/"
],
"engines": {
"node": ">= 12"
},
"volta": {
"node": "12.19.0",
"yarn": "1.22.10"
}
}