-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "sandblaster",
"version": "1.3.0",
"description": "A client-side JavaScript library to detect if your code is running inside of a sandboxed iframe... and, if desired, might just be able to change that fact!",
"keywords": [
"iframe",
"sandbox",
"security",
"csp",
"cross-origin",
"cross-domain",
"xss",
"html5"
],
"homepage": "http://jamesmgreene.github.io/sandblaster/",
"license": "MIT",
"author": {
"name": "James M. Greene",
"email": "james.m.greene@gmail.com",
"url": "http://greene.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/JamesMGreene/sandblaster.git"
},
"bugs": {
"url": "https://github.com/JamesMGreene/sandblaster/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1"
},
"main": "dist/sandblaster.js",
"files": [
"dist/*",
"package.json",
"LICENSE-MIT"
],
"scripts": {
"test": "grunt travis --verbose"
}
}