-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.5 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
83
84
85
86
87
88
89
90
91
{
"name": "autonym",
"version": "1.3.4",
"description": "A KISS JSON REST API framework that can be mounted to your Express application.",
"keywords": [
"autonym",
"kiss",
"json",
"rest",
"api",
"express",
"middleware",
"schema",
"es6"
],
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --source-maps --copy-files",
"generate-docs": "rm -rf docs && esdoc",
"lint": "eslint buildTools src",
"precommit": "lint-staged",
"prettier": "prettier --write '{{src,buildTools}/**/*.{js,json},*.js,.*rc,.*.json}'",
"postinstall": "node buildTools/devInstall.js",
"test": "npm run generate-docs",
"watch": "npm run build -- --watch"
},
"lint-staged": {
"{{src,buildTools}/**/*.{js,json},*.js,.*rc,.*.json}": [
"prettier --write",
"git add"
],
"src/**/*.{js,json}": [
"eslint",
"git add"
]
},
"engines": {
"node": ">=4.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmiller42/autonym.git"
},
"author": "Matt Miller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmiller42/autonym/issues"
},
"homepage": "https://github.com/mmiller42/autonym#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"body-parser": "^1.19.0",
"es6-promisify": "^6.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-nodejs-plugin": "^1.0.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-inject-assets-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"express": "^4.17.1",
"gh-pages": "^1.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semver-sort": "0.0.4"
},
"peerDependencies": {
"body-parser": "^1.0.0",
"express": ">=4.0.0 <6.0.0"
},
"dependencies": {
"@nodeutils/defaults-deep": "^1.1.0",
"ajv": "^6.1.1",
"assign-deep": "^1.0.1",
"async-boolean-expression-evaluator": "^2.0.0",
"http-status-codes": "^1.3.0",
"inflection": "^1.12.0",
"lodash": "^4.17.4"
}
}