-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "frisker",
"version": "1.6.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha dist/**/*.spec.js",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "rimraf dist && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seikho/frisker.git"
},
"keywords": [
"body",
"request",
"valid",
"validator",
"typescript",
"checker"
],
"author": "Carl Winkler",
"license": "MIT",
"bugs": {
"url": "https://github.com/seikho/frisker/issues"
},
"homepage": "https://github.com/seikho/frisker#readme",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"files": [
"dist/**",
"src/**",
"tsconfig.json",
"README.md",
"package.json",
"!dist/**/*.spec.js",
"!src/**/*.spec.ts"
],
"dependencies": {
"@types/node": "^15.12.2"
}
}