This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
55
56
57
{
"name": "gsheets2json",
"version": "1.0.0",
"description": "GoogleSheet2Json takes a Google Spreadsheet and makes it easily accessible through JavaScript. With zero dependencies!",
"main": "src/tabletop.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Puzzlout/GoogleSheet2Json.git"
},
"author": "Jeremie Litzler <puzzlout@gmail.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^9.7.5",
"browser-sync": "^2.26.7",
"chai": "^3.5.0",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp-concat-2020": "^3.0.1",
"gulp-flatmap": "^1.0.2",
"gulp-header": "^2.0.9",
"gulp-jshint": "^2.1.0",
"gulp-optimize-js": "^1.1.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.0.2",
"gulp-terser": "^1.2.0",
"jshint": "^2.11.0",
"jshint-stylish": "^2.2.1",
"lazypipe": "^1.0.2",
"mocha": "^7.1.1"
},
"dependencies": {
"lodash": "^4.17.12",
"request": "^2.51.0"
},
"engines": {
"node": ">=0.10.0"
},
"bugs": {
"url": "https://github.com/Puzzlout/GoogleSheet2Json/issues"
},
"homepage": "https://github.com/Puzzlout/GoogleSheet2Json#readme",
"keywords": [
"google",
"sheets",
"json",
"javacript",
"tabletop"
]
}