-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "prismy",
"version": "3.0.0",
"description": ":rainbow: Simple and fast type safe server library based on micro for now.sh v2.",
"keywords": [
"micro",
"service",
"microservice",
"serverless",
"API",
"now"
],
"author": "Junyoung Choi <[email protected]>",
"homepage": "https://github.com/prismyland/prismy",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.d.ts",
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prismyland/prismy.git"
},
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.build.json",
"lint": "prettier --check src/**/*.ts specs/**/*.ts examples/*/src/**/*.ts",
"format": "prettier --write src/**/*.ts specs/**/*.ts examples/*/src/**/*.ts",
"test": "npm run lint && npm run test-type && npm run test-coverage",
"test-api": "jest",
"test-type": "tsc --noEmit",
"test-coverage": "jest --coverage",
"codecov": "codecov -f coverage/*.json",
"prepublishOnly": "npm test && npm run build",
"generate-docs": "typedoc src && sh scripts/generate-docs.sh"
},
"bugs": {
"url": "https://github.com/prismyland/prismy/issues"
},
"devDependencies": {
"@types/content-type": "^1.1.3",
"@types/jest": "^24.0.13",
"@types/node": "^12.19.1",
"@types/test-listen": "^1.1.0",
"codecov": "^3.8.0",
"jest": "^26.6.1",
"prettier": "^1.17.1",
"rimraf": "^3.0.0",
"test-listen": "^1.1.0",
"ts-jest": "^26.4.2",
"typedoc": "^0.15.0",
"got": "^11.8.0",
"typescript": "^4.0.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/examples/"
]
},
"dependencies": {
"content-type": "^1.0.4",
"is-stream": "^2.0.0",
"path-to-regexp": "^6.2.0",
"raw-body": "^2.4.1",
"tslib": "^2.0.3"
}
}