-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sheetrock",
"version": "1.2.0",
"description": "Quickly connect to, query, and lazy-load data from Google Spreadsheets.",
"keywords": [
"ecosystem:jquery",
"jquery-plugin",
"spreadsheet",
"tables",
"google",
"googledocs",
"ajax",
"nodb"
],
"homepage": "https://chriszarate.github.io/sheetrock/",
"repository": {
"type": "git",
"url": "https://github.com/chriszarate/sheetrock"
},
"bugs": {
"url": "https://github.com/chriszarate/sheetrock/issues"
},
"author": {
"name": "Chris Zarate",
"url": "https://chris.zarate.org"
},
"license": "MIT",
"main": "dist/sheetrock.min.js",
"jsnext:main": "src/index.js",
"ava": {
"files": [
"test/ava/**/*.js"
],
"require": [
"@babel/register"
]
},
"nyc": {
"sourceMap": false
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 14
}
}
]
]
},
"browser": "dist/sheetrock.min.js",
"scripts": {
"build": "rollup src/index.js --file dist/sheetrock.min.js --plugin rollup-plugin-terser --sourcemap --format umd --name sheetrock",
"lint": "eslint src",
"prepublish": "npm run build",
"report:coverage": "nyc report --reporter=lcov",
"report:coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "ava",
"test:coverage": "nyc ava"
},
"dependencies": {
"cross-fetch": "^3.1.4"
},
"devDependencies": {
"@babel/register": "^7.15.3",
"ava": "^3.15.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"nyc": "^15.1.0",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^11.1.2"
}
}