-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 KB
/
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": "fastpath",
"version": "2.0.0",
"description": "An optimised Jsonpath parser",
"main": "dist/index.js",
"author": {
"name": "Poornima Venkatakrishnan",
"email": "[email protected]"
},
"directories": {
"test": "test",
"dist": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/pvenkatakrishnan/fastPath.git"
},
"keywords": [
"jsonpath",
"parser",
"json"
],
"devDependencies": {
"JSONPath": "^0.10.0",
"babel": "4.7.3",
"glob": "^4.4.1",
"istanbul": "^0.3.0",
"jshint": "^2.5.4",
"lodash": "^2.4.1",
"tape": "^2.4.2"
},
"scripts": {
"compile": "babel --optional runtime --modules common --out-dir dist index.js lib/**.js",
"prepublish": "npm run compile",
"test": "npm run compile && babel-node tests/harness.js tests/**/*.js",
"cover": "npm run compile && babel-node node_modules/.bin/istanbul cover tests/harness.js tests/**/*-test.js"
},
"dependencies": {
"babel-runtime": "4.7.3"
}
}