-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "google-spreadsheet-addon",
"version": "0.0.1",
"description": "Google spreadsheet add-on for consuming Santiment data",
"main": "index.js",
"scripts": {
"docs": "node ./utils/generateDoc.js",
"push": "clasp push -f",
"pretest": "eslint . && npm run generate",
"test": "mocha",
"test:unit": "npm run pretest && mocha test/unit",
"test:integration": "npm run pretest && mocha test/integration",
"generate": "node ./generators/mainGenerator.js",
"test:generate": "node ./generators/getMetricTestGenerator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/santiment/google-spreadsheet-addon.git"
},
"author": "Santiment",
"bugs": {
"url": "https://github.com/santiment/google-spreadsheet-addon/issues"
},
"homepage": "https://github.com/santiment/google-spreadsheet-addon#readme",
"dependencies": {
"eslint-config-es6": "^1.10.3"
},
"devDependencies": {
"@google/clasp": "^2.3.0",
"dotf": "1.4.2",
"chai": "^4.2",
"chai-datetime": "^1.5.0",
"date-fns": "^1.30.1",
"eslint": "^5.16",
"eslint-config-es5": "^0.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-googleappsscript": "^1.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^8.1.0",
"gas-local": "^1.3.1",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^7.1",
"path": "^0.12.7",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"sugar": "^2.0.4",
"sync-request": "^4.0.1"
}
}