This repository was archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.1 KB
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": "@kjots/express-json-data",
"version": "4.1.0",
"description": "Express JSON data router",
"main": "lib/index.js",
"types": "types.d.ts",
"scripts": {
"build": "babel src --out-dir lib --ignore 'src/**/*.spec.js' --source-maps --quiet",
"build:watch": "babel src --out-dir lib --ignore 'src/**/*.spec.js' --source-maps --watch",
"clean": "npm-run-all clean:coverage clean:lib",
"clean:coverage": "rimraf .nyc_output coverage",
"clean:lib": "rimraf lib",
"prepare": "npm-run-all prepare:husky prepare:package",
"prepare:husky": "husky install",
"prepare:package": "npm-run-all clean build",
"release": "standard-version",
"test": "npm-run-all test:eslint test:mocha",
"test:eslint": "eslint src",
"test:mocha": "cross-env NODE_ENV=test nyc mocha --require @babel/register src/**/*.spec.js"
},
"homepage": "https://github.com/kjots/express-json-data#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kjots/express-json-data.git"
},
"keywords": [
"express",
"json",
"data",
"router"
],
"author": "Karl Juri Ots <kjots@kjots.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kjots/express-json-data/issues"
},
"engines": {
"node": ">=14.18.1",
"npm": ">=6.14.15"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/register": "^7.16.0",
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.2.0",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"node-mocks-http": "^1.11.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"standard-version": "^9.3.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fast-json-patch": "^3.1.0",
"lodash": "^4.17.21"
}
}