-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "@jalik/rest-server",
"version": "2.0.3",
"description": "A REST API builder based on Express.",
"license": "MIT",
"keywords": [
"api",
"express",
"rest",
"server",
"service"
],
"author": {
"name": "Karl Stein",
"email": "[email protected]",
"url": "https://github.com/jalik"
},
"repository": {
"type": "git",
"url": "https://github.com/jalik/js-rest-server.git"
},
"bugs": {
"url": "https://github.com/jalik/js-rest-server/issues"
},
"main": "dist/index.js",
"esnext": "src/index.js",
"sideEffects": false,
"scripts": {
"build": "babel src -d dist",
"clean": "rimraf dist",
"dev": "babel --watch src -d dist",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepare": "npm run clean && npm run build && npm run lint",
"prepublishOnly": "npm test",
"test": "jest --passWithNoTests"
},
"files": [
"/dist",
"/src"
],
"dependencies": {
"@jalik/extend": "^2.1.11",
"@jalik/observer": "^1.1.10",
"cors": "^2.8.5",
"express": "^4.16.4"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"acorn": "^8.0.4",
"ajv": "^7.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"node-fetch": "^2.6.1",
"typescript": "^4.1.3"
}
}