-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "node-looker",
"version": "0.0.1",
"description": "Looker API client for the V3 looker api",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha test/",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- --recursive",
"test-ci": "istanbul cover node_modules/.bin/_mocha -- --recursive && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "node_modules/.bin/eslint src/**/*.js test/**/*.js"
},
"keywords": [
"looker",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/scottty881/node-looker"
},
"author": "scottty881",
"license": "ISC",
"devDependencies": {
"code": "^2.2.1",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2",
"sinon": "^1.17.3"
},
"dependencies": {
"bluebird": "^3.3.5",
"joi": "^8.0.5",
"moment": "^2.13.0",
"request": "^2.72.0"
},
"pre-commit": [
"lint"
]
}