-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 924 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
43
{
"name": "lookml-parser",
"version": "6.10.0",
"description": "Parse LookML",
"main": "index.js",
"scripts": {
"test": "node test/parse.js && node test/parse-files.js"
},
"bin": {
"lookml-parser": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabio-looker/node-lookml-parser.git"
},
"keywords": [
"Looker",
"LookML"
],
"author": "Fabio Beltramini",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabio-looker/node-lookml-parser/issues"
},
"homepage": "https://github.com/fabio-looker/node-lookml-parser#readme",
"dependencies": {
"bluebird": "^3.5.1",
"glob": "^7.1.2",
"minimist": "^1.2.0",
"pegjs": "^0.10.0"
},
"peerDependencies": {
"js-yaml": "^4.1.0"
},
"peerDependenciesMeta": {
"js-yaml": {
"optional": true
}
},
"devDependencies": {
"test-runner": "^0.5.0"
}
}