This repository was archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "buffett-code-api-client-google-spreadsheet",
"version": "1.0.0",
"description": "",
"main": "main.js",
"devDependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.7",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"cpx": "^1.5.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.1.1",
"gas-webpack-plugin": "^1.0.2",
"jest": "^24.9.0",
"json": "^10.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^3.7.3",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"update-api-json": "npm run update-api-json:quarter && npm run update-api-json:indicator",
"postupdate-api-json": "prettier --write src/__mocks__/fixtures/*.js",
"update-api-json:quarter": "echo 'module.exports =' > src/__mocks__/fixtures/quarter-property.js && curl 'http://docs.buffett-code.com/v2-quarter.json' >> src/__mocks__/fixtures/quarter-property.js",
"update-api-json:indicator": "echo 'module.exports =' > src/__mocks__/fixtures/indicator-property.js && curl 'http://docs.buffett-code.com/v2-indicator.json' >> src/__mocks__/fixtures/indicator-property.js",
"prebuild": "rimraf dist",
"build": "cpx 'appsscript.json' 'dist' -v && cpx 'src/ui/*.html' 'dist' -v && webpack",
"watch": "webpack -w",
"lint": "eslint 'src/**/*.ts'",
"jest": "jest",
"test": "npm run lint && npm run jest",
"switch:local": "cp .clasp.local.json .clasp.json",
"switch:dev": "cp .clasp.dev.json .clasp.json",
"switch:prod": "cp .clasp.prod.json .clasp.json",
"deploy": "npm run build && clasp push",
"predeploy:local": "npm run switch:local",
"deploy:local": "npm run deploy",
"predeploy:dev": "npm run switch:dev",
"deploy:dev": "npm run deploy",
"postdeploy:dev": "npm run switch:local",
"predeploy:prod": "npm run switch:prod",
"deploy:prod": "npm run deploy",
"postdeploy:prod": "npm run switch:local",
"open": "clasp open",
"preopen:local": "npm run switch:local",
"open:local": "npm run open",
"preopen:dev": "npm run switch:dev",
"open:dev": "npm run open",
"postopen:dev": "npm run switch:local",
"preopen:prod": "npm run switch:prod",
"open:prod": "npm run open",
"postopen:prod": "npm run switch:local",
"login": "clasp login"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuffettCode/buffett-code-api-client-google-spreadsheet.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BuffettCode/buffett-code-api-client-google-spreadsheet/issues"
},
"homepage": "https://github.com/BuffettCode/buffett-code-api-client-google-spreadsheet#readme"
}