forked from evanshortiss/safejson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "safejson",
"version": "1.0.0",
"description": "Safely parse and stringify JSON using node style callbacks.",
"main": "src/index.js",
"scripts": {
"test": "mocha --ui bdd"
},
"issues": "https://github.com/evanshortiss/safejson/issues",
"homepage": "https://github.com/evanshortiss/safejson",
"repository": "git@github.com:evanshortiss/safejson.git",
"keywords": [
"safe",
"json",
"parse",
"stringify"
],
"testling": {
"harness": "mocha-bdd",
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/4..latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
},
"author": "Evan Shortiss",
"license": "MIT",
"devDependencies": {
"mocha": "1.18.2",
"browserify": "~4.1.5",
"grunt": "~0.4.5",
"grunt-browserify": "~2.1.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-mocha-test": "~0.10.2"
}
}