-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@fork-git-it/annotatedjs",
"version": "1.10.0-beta",
"description": "A JavaScript framework for building backends with annotations",
"main": "dist/index.js",
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"types": "types/index.d.ts",
"files": [
"dist/**/*",
"types/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fork-Git-It/AnnotatedJS.git"
},
"scripts": {
"test": "npm run test:unit & npm run test:int",
"test:unit": "jest unit",
"test:int": "npm run test:int:sw & npm run test:int:node",
"test:int:sw": "jest integration",
"test:int:node": "jest integration --env=node",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier . -w",
"build": "tsc",
"docs": "typedoc src/index.ts"
},
"contributors": [
{
"name": "William Bryce Angell",
"email": "[email protected]",
"url": "https://github.com/wbryceangell"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"@types/normalize-path": "^3.0.0",
"@types/ramda": "^0.29.10",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"itty-router": "^4.0.27",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ramda": "^0.29.1",
"ts-jest": "^29.0.5",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"dependencies": {
"normalize-path": "^3.0.0"
}
}