-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 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
56
57
58
59
60
61
62
63
64
65
{
"name": "micro-nosniff",
"version": "1.1.0",
"description": "MicroJs \"middleware\" to prevent mimetype sniffing",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "CanRau <cansrau@gmail.com> (https://www.canrau.com)",
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "yarn build --watch",
"test": "ava src/*.spec.ts",
"test:watch": "yarn test --watch"
},
"bugs": {
"url": "https://github.com/gaiama/micro-nosniff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gaiama/micro-nosniff.git"
},
"keywords": [
"micro",
"zeit",
"now",
"microservice",
"micro-service",
"server",
"rest",
"middleware",
"micro-plugin"
],
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"devDependencies": {
"@types/micro": "^7.3.3",
"@types/request-promise": "^4.1.45",
"@types/test-listen": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"ava": "^2.4.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"micro": "^9.3.4",
"now": "^16.7.1-canary.2",
"prettier": "^1.19.1",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"test-listen": "^1.1.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}