-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 2.34 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
{
"name": "hodl-totals",
"version": "2.0.0",
"description": "Collection of various cryptocurrency tracking tools and scripts for Google Sheets™.",
"main": "index.js",
"scripts": {
"compile": "genversion --es6 --semi src/version.ts && replace-in-file \"export const\" \"const\" src/version.ts && replace-in-file \";\" \"; export { version };\" src/version.ts && rollup -c",
"lint": "eslint -c .eslintrc.js .",
"test:e2e": "npm run deploy && clasp open --webapp",
"test:debug": "node --experimental-specifier-resolution=node --inspect node_modules/.bin/jest --runInBand",
"test:unit": "jest --coverage",
"test:unit-watch": "jest --verbose --watchAll",
"test": "npm run test:unit && npm run test:e2e",
"deploy": "clasp push",
"clean": "rm -rf dist",
"build": "npm run clean && npm run lint && npm run compile",
"start": "npm run compile && node --experimental-specifier-resolution=node dist/index.mjs",
"debug": "npm run compile && node --experimental-specifier-resolution=node --inspect dist/index.mjs",
"postinstall": "replace-in-file \"declare var console\" \"//declare var console\" node_modules/@types/google-apps-script/google-apps-script.base.d.ts"
},
"keywords": [
"crypto",
"google-sheets",
"tax",
"cryptotax",
"cryptocurrency",
"cryptocurrencies",
"taxes",
"gains",
"cost-basis",
"hodl-totals"
],
"author": "dogracer <dogracer@tutanota.com>, Daring Crypto Ventures LLC",
"homepage": "https://github.com/dogracer/hodl-totals#readme",
"license": "MIT",
"devDependencies": {
"@google/clasp": "~2.3.2",
"@ni/eslint-config-javascript": "^4.2.0",
"@ni/eslint-config-typescript": "^4.2.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/google-apps-script": "^1.0.57",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"browserslist": "^4.21.5",
"coveralls": "^3.1.1",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"genversion": "^3.1.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^28.1.3",
"json-schema": ">=0.4.0",
"replace-in-file": "^6.3.5",
"rollup": "^3.15.0",
"ts-jest": "^28.0.7",
"typescript": "~4.3.5"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}