forked from looker-open-source/look-at-me-sideways
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "@looker/look-at-me-sideways",
"version": "1.3.0",
"description": "A judgmental little LookML linter >_>",
"main": "index.js",
"directories": {
"doc": "docs"
},
"bin": {
"lams": "./cli.js"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll --verbose",
"lint": "node node_modules/.bin/eslint {*,__tests__/*,rules/*,lib/*}.js",
"lint-fix": "node node_modules/.bin/eslint --fix {*,__tests__/*,rules/*,lib/*}.js",
"preversion": "npm run lint-fix && npm run test",
"prepublishOnly": "npm shrinkwrap && mv npm-shrinkwrap.json npm-shrinkwrap.dev.json && npm prune --prod && npm shrinkwrap",
"postpublish": "cp npm-shrinkwrap.dev.json npm-shrinkwrap.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/looker-open-source/look-at-me-sideways.git"
},
"keywords": [
"looker",
"lookml",
"lint",
"linter"
],
"author": "Fabio Beltramini",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/looker-open-source/look-at-me-sideways/issues"
},
"homepage": "https://github.com/looker-open-source/look-at-me-sideways#readme",
"dependencies": {
"dot": "^1.1.2",
"fromentries": "^1.2.0",
"jsonpath": "^1.0.2",
"liyad": "^0.2.3",
"lookml-parser": "^6.3.0",
"minimist": "^1.2.5",
"require-from-string": "^2.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-google": "^0.10.0",
"eslint-plugin-jest": "^21.27.2",
"jest": "^25.2.4",
"jest-extended": "^0.11.2"
}
}