-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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": "cartodb-layers",
"version": "1.3.4",
"description": "A wrapper for CartoDB APIs using SQL and REST.",
"author": {
"name": "Journalism++",
"email": "[email protected]",
"url": "http://jplusplus.org"
},
"repository": "jplusplus/cartodb-layers",
"license": "MIT",
"files": [
"index.js",
"lib/"
],
"jest": {
"testEnvironment": "node"
},
"keywords": [
"cartodb-layers",
"cartodb",
"layers",
"client",
"layers",
"api"
],
"dependencies": {
"axios": "^1.3.3",
"cartodb": "^0.5.1",
"jsdoc-to-markdown": "^8.0.0",
"json-query": "^2.2.2",
"lodash": "^4.17.21",
"q": "^1.5.1",
"turbo-carto": "^0.21.3"
},
"devDependencies": {
"dotenv": "^16.0.3",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.1.0",
"jest": "^29.4.3",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^5.1.0",
"time-grunt": "^2.0.0",
"tv4": "^1.1.9"
},
"scripts": {
"test": "npx jest",
"lint": "npx grunt jshint",
"doc": "npx jsdoc2md lib/*.js > API.md"
}
}