forked from jsbin/loop-protect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 884 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
{
"author": "Remy Sharp",
"name": "loop-protect",
"description": "Prevent infinite loops in dynamically eval'd JavaScript.",
"main": "lib/loop-protect",
"version": "1.0.1",
"homepage": "https://github.com/jsbin/loop-protect",
"repository": {
"type": "git",
"url": "git://github.com/jsbin/loop-protect.git"
},
"scripts": {
"version": "grunt dist && git add dist",
"postversion": "git push && git push --tags",
"test": "node_modules/mocha/bin/_mocha -t 25000 --ui bdd --reporter list test/*.test.js"
},
"devDependencies": {
"mocha": "~1.11.0",
"sinon": "~1.7.3",
"grunt": "~0.4.5",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-jshint": "~0.10.0",
"jshint-stylish": "~0.4.0",
"grunt-remove-logging": "~0.2.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://jsbin.mit-license.org"
}
]
}