-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
41 lines (41 loc) · 968 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
38
39
40
41
{
"name": "jsonpointer.js",
"description": "JavaScript implementation of JSON Pointer",
"author": {
"name": "Alexey Kuzmin",
"email": "[email protected]"
},
"version": "0.4.0",
"preferGlobal": false,
"repository": {
"type": "git",
"url": "git://github.com/alexeykuzmin/jsonpointer.js.git"
},
"homepage": "https://github.com/alexeykuzmin/jsonpointer.js",
"bugs": {
"url": "https://github.com/alexeykuzmin/jsonpointer.js/issues"
},
"scripts": {
"test": "grunt check-code"
},
"devDependencies": {
"chai": "~1.5.0",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.4.2",
"grunt-coffeelint": "0.0.6",
"grunt-simple-mocha": "~0.4.0",
"grunt-contrib-coffee": "~0.6.6",
"mocha": "~1.9.0"
},
"readmeFilename": "README.md",
"main": "src/jsonpointer",
"directories": {
"test": "test"
},
"dependencies": {},
"keywords": [
"jsonpointer",
"json"
],
"license": "MIT"
}