-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "@yagura/http",
"version": "0.0.9",
"description": "HTTP package for Yagura",
"main": "lib/js/index.js",
"types": "lib/declarations/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"prepare": "npm run build",
"build": "./node_modules/typescript/bin/tsc",
"test": "eslint src/ && TS_NODE_PROJECT=\"tsconfig.test.json\" NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha -s 1 --timeout 30000 -r ts-node/register ./test/**/*.test.ts",
"release": "npm run test && npm run clean && npm run build && npm publish"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"author": "James Kerber <[email protected]>",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/mekomidev/yagura-http.git"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@yagura/yagura": "^0.1.5"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.11",
"@types/expect.js": "^0.3.29",
"@types/express": "^4.17.11",
"@types/superagent": "^4.1.11",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@yagura/yagura": "0.1.5",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"sinon": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.3"
},
"dependencies": {
"colors": "^1.4.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"find-my-way": "^6.3.0"
}
}