generated from ULL-MII-SYTWS/jq-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 839 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
42
{
"name": "jq-tutorial",
"version": "0.0.5",
"description": "Exercises for learning jq",
"main": "index.js",
"preferGlobal": true,
"bin": {
"jq-tutorial": "./bin/jq-tutorial"
},
"scripts": {
"test": "./node_modules/jshint/bin/jshint *.js"
},
"dependencies": {
"async": "~0.2.9",
"colors": "~0.6.2",
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git@github.com:rjz/jq-tutorial.git"
},
"keywords": [
"jq",
"json",
"tutorial",
"exercises"
],
"bugs": {
"url": "https://github.com/rjz/jq-tutorial/issues"
},
"author": "RJ Zaworski <rj@rjzaworski.com> (http://rjzaworski.com)",
"contributors": [
{
"name": "CheshireSwift"
}
],
"license": "MIT",
"devDependencies": {
"jshint": "^2.13.1",
"prettier": "^2.4.1"
}
}