-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 871 Bytes
/
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
{
"name": "x-frame-options",
"version": "1.0.0",
"description": "Express middleware to add an X-Frame-Options response header",
"author": "Dom Harrington <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:domharrington/x-frame-options"
},
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/jshint .",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/_mocha -- -R spec -r should test.js",
"prepublish": "npm test && npm prune"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"keywords": [
"x-frame-options",
"security",
"middleware",
"express"
],
"license": "BSD-2-Clause",
"devDependencies": {
"should": "~2.1.0",
"supertest": "~0.8.1",
"mocha": "~1.14.0",
"express": "~3.4.4",
"jshint": "~2.3.0"
}
}