-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.24 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "easer",
"description": "A simple, generic express server with built-in authentication and authorization",
"version": "7.0.4",
"keywords": [
"cli",
"util",
"tool",
"utility"
],
"author": {
"name": "Tamás Benke",
"email": "tombenke@gmail.com"
},
"bugs": {
"url": "https://github.com/tombenke/easer/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/tombenke/easer.git"
},
"files": [
"dist",
"README.md"
],
"bin": {
"easer": "./dist/app.js"
},
"dependencies": {
"core-js": "^3.26.1",
"lodash": "^4.17.20",
"npac": "^2.1.14",
"npac-nats-adapter": "1.0.5",
"npac-webserver-adapter": "^5.0.9",
"npac-wsgw-adapters": "4.0.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"chai": "^5.1.2",
"cookie": "^1.0.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"es6-promise": "^4.2.8",
"eslint": "^9.15.0",
"expect": "^29.7.0",
"globals": "^15.12.0",
"isomorphic-fetch": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"swagger-cli": "^4.0.4",
"vinyl-buffer": "^1.0.0"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src/**.js",
"test": "cross-env NODE_ENV=test mocha --recursive --require @babel/register 'src/**/*.spec.js'",
"test:watch": "npm test -- --watch",
"coverage": "NODE_ENV=test istanbul cover _mocha -- recursive --require @babel/register --timeout 15000 'src/**/*.spec.js'",
"docs": "rm -fr ./docs/api/* && jsdoc -c ./.jsdoc.json",
"prettier": "prettier --single-quote --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"all": "npm run coverage && npm run build && npm run docs"
}
}