-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.67 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
{
"name": "@yagura/yagura",
"version": "0.1.5",
"description": "A solid, event-based layered web framework - written in TypeScript for Node.js",
"main": "lib/js/index.js",
"types": "lib/declarations/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"build": "./node_modules/typescript/bin/tsc -p tsconfig.build.json",
"lint": "eslint src/ && eslint test/",
"test": "eslint src/ && TS_NODE_PROJECT=\"tsconfig.json\" NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --timeout 30000 -s 1 -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.git"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.0.0",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.6",
"eslint": "^8.16.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"
}
}