-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "@microcode/request-schema",
"version": "0.9.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/microcode/request-schema.git"
},
"author": "Jesper Svennevid",
"license": "MIT",
"bugs": {
"url": "https://github.com/microcode/request-schema/issues"
},
"homepage": "https://github.com/microcode/request-schema#readme",
"dependencies": {
"@microcode/pathtree": "== 0.3.0",
"debug": "^4.3.4",
"esprima": "^4.0.1",
"lodash.first": "^3.0.0",
"lodash.isfunction": "^3.0.9"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/debug": "^4.1.12",
"@types/esprima": "^4.0.6",
"@types/lodash.first": "3.0.9",
"@types/lodash.isfunction": "3.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^4.3.7",
"eslint": "^8.56.0",
"minimatch": "^3.1.2",
"mocha": "^10.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"lint": "eslint --c .eslintrc --ext .ts src/**/*.ts",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test && yarn run lint",
"preversion": "yarn run lint"
}
}