-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 861 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 861 Bytes
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
{
"name": "jsonaught",
"version": "0.1.2",
"author": {
"name": "Peter Morris",
"email": "peter.r.morris@gmail.com",
"url": "http://fatgeekuk.org"
},
"license": "OSL-3.0",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/mocha --compilers js:babel/register --reporter spec"
},
"repository" : {
"type" : "git",
"url" : "git@github.com:fatgeekuk/jsonaught.git"
},
"description": "A JSON searcher, mainly intended to speed up writing react component tests",
"keywords": ["json", "searcher"],
"man" : [ "./man/jsonaught.1" ],
"main": "lib/jsonaught.js",
"dependencies": {
"core-js": "^0.6.0",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel": "^4.6.0",
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"readme": "README.md"
}