-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "node-puppetdbquery",
"version": "1.1.4",
"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 <[email protected]>",
"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",
"commander": "^2.15.1",
"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": "^1.13.2"
},
"types": "main.d.ts",
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}