-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 944 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
35
36
37
{
"name": "js-object-parser",
"version": "1.0.1",
"description": "A library for parsing a javascript style object. Can handle regular JSON aswell.",
"main": "js-object-parser.js",
"repository": {
"type": "git",
"url": "https://github.com/simonlovesyou/js-object-parser.git"
},
"keywords": [
"javascript",
"js",
"object",
"parser",
"parse"
],
"devDependencies": {
"chai": "^3.3.0",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.3",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^17.3.1",
"mocha": "^2.3.3"
},
"scripts": {
"test": "mocha test/index.js"
},
"author": "Simon Johansson",
"license": {
"type": "MIT",
"url": "https://github.com/simonlovesyou/js-object-parser/blob/master/MIT-LICENSE"
},
"bugs": {
"url": "https://github.com/simonlovesyou/js-object-parser/issues"
},
"homepage": "https://github.com/simonlovesyou/js-object-parser"
}