-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "@jordanforeman/api-framework",
"version": "5.2.0",
"description": "Everything you need to start creating a NodeJS based API Server",
"main": "lib/index",
"types": "lib/index",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"coverage": "nyc --check-coverage --reporter=text npm test",
"fixlint": "eslint .js src/ test/ --fix",
"lint": "eslint src/**/*.ts test/**/*.js",
"test": "mocha ./test/unit/**/*.spec.js",
"verify": "npm run lint && npm run coverage"
},
"files": [
"/lib",
"/src"
],
"repository": {
"type": "git",
"url": "[email protected]:JordanForeman/api-framework"
},
"author": "Jordan Foreman <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"helmet": "^3.9.0",
"morgan": "^1.9.0",
"multer": "1.4.2"
},
"devDependencies": {
"@jordanforeman/commitizen-config": "1.2.3",
"@jordanforeman/commitlint-config": "0.2.2",
"@jordanforeman/eslint-config": "0.2.6",
"@jordanforeman/nyc-config": "0.1.1",
"@jordanforeman/release-config": "0.2.2",
"@jordanforeman/renovate-config": "0.2.3",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/morgan": "1.9.3",
"chai": "4.2.0",
"chance": "1.1.4",
"husky": "4.2.3",
"mocha": "7.1.1",
"nyc": "15.0.0",
"proxyquire": "2.1.3",
"sinon": "9.0.1",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
}
}