-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.58 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.58 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
71
{
"name": "@smoothjs/express-adapter",
"version": "0.1.0",
"description": "Smooth modern NodeJS web framework (@express-adapter)",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register \"./tests/*.spec.ts\" \"./tests/**/*.spec.ts\"",
"build": "rimraf build && tsc -p tsconfig.json",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"commit": "git-cz",
"release": "np"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"AbdallahMohammed <abdallah.r660@gmail.com>"
],
"license": "MIT",
"files": [
"build/"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"dependencies": {
"@smoothjs/config": "^0.1.0",
"@smoothjs/smooth": "^0.1.0",
"express": "^4.17.1",
"multer": "^1.4.2",
"typescript-ioc": "^3.2.2"
},
"devDependencies": {
"@types/express": "4.17.12",
"@types/mocha": "8.2.2",
"@types/multer": "1.4.5",
"@types/node": "14.17.1",
"@types/require-all": "3.0.2",
"copyfiles": "2.4.1",
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"japa": "3.1.1",
"mocha": "8.4.0",
"np": "7.5.0",
"prettier": "2.3.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"ts-node": "10.0.0",
"typescript": "4.3.2"
}
}