-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
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
43
44
{
"name": "node-puppetdbquery",
"version": "1.1.3",
"description": "a simple query language parser for PuppetDB v4 API",
"main": "main",
"bin": {
"find-nodes": "cli.js"
},
"scripts": {
"test": "npm run lint && npm run nodeunit",
"nodeunit": "nodeunit test",
"lint": "eslint src",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/dalen/node-puppetdbquery.git"
},
"keywords": ["puppetdb", "query", "puppetdbquery", "puppet", "jison"],
"author": "Erik Dalén <erik.gustav.dalen@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dalen/node-puppetdbquery/issues"
},
"homepage": "https://github.com/dalen/node-puppetdbquery",
"dependencies": {
"ast-types": "^0.8.18",
"nomnom": "^1.6.0",
"timespec": "^0.3.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.0.1",
"jison": "^0.4.13",
"jison-loader": "^1.0.0",
"nodeunit": "^0.11.2",
"webpack": "^4.6.0"
},
"types": "main.d.ts"
}