forked from SuperFlyTV/spreadsheet-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 4.45 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "sofie-spreadsheet-gateway",
"version": "0.1.3",
"description": "",
"main": "dist/index.js",
"contributors": [
{
"name": "Johan Nyman",
"email": "[email protected]",
"url": "http://superfly.tv"
},
{
"name": "Stephan Nordnes Eriksen",
"url": "https://github.com/stephan-nordnes-eriksen"
}
],
"author": "SuperFly.tv",
"scripts": {
"info": "npm-scripts-info",
"build": "trash dist && yarn build:main",
"buildstart": "yarn build && yarn start",
"buildinspect": "yarn build && yarn inspect",
"build:main": "tsc -p tsconfig.json",
"unit": "yarn jest",
"test": "yarn lint && yarn unit",
"test:integration": "yarn lint && jest --config=jest-integration.config.js",
"watch": "jest --watch",
"cov": "jest; open-cli coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"send-coverage": "jest && codecov",
"docs": "yarn docs:html && open-cli docs/index.html",
"docs:html": "typedoc src/index.ts --excludePrivate --mode file --theme minimal --out docs",
"docs:json": "typedoc --mode file --json docs/typedoc.json src/index.ts",
"docs:publish": "yarn docs:html && gh-pages -d docs",
"changelog": "standard-version",
"inspect": "node --inspect dist/index.js",
"release": "yarn reset && yarn test && yarn changelog",
"reset": "git clean -dfx && git reset --hard && yarn",
"ci": "yarn test",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn audit --groups devDependencies",
"start": "node dist/index.js",
"unlinkall": "yarn unlink @sofie-automation/server-core-integration && yarn --check-files",
"prepare": "husky install",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lint-fix": "yarn lint --fix",
"license-validate": "yarn sofie-licensecheck"
},
"scripts-info": {
"info": "Display information about the scripts",
"build": "(Trash and re)build the library",
"lint": "Lint all typescript source files",
"unit": "Build the library and run unit tests",
"test": "Lint, build, and test the library",
"watch": "Watch source files, rebuild library on changes, rerun relevant tests",
"cov": "Run tests, generate the HTML coverage report, and open it in a browser",
"docs": "Generate HTML API documentation and open it in a browser",
"docs:publish": "Generate HTML API documentation and push it to GitHub Pages",
"docs:json": "Generate API documentation in typedoc JSON format",
"changelog": "Bump package.json version, update CHANGELOG.md, tag a release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"release": "Clean, build, test, publish docs, and prepare release (a one-step publish process)",
"ci": "Test script for running by the CI (CircleCI)",
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses"
},
"license": "MIT",
"dependencies": {
"@sofie-automation/blueprints-integration": "1.41.0-in-testing.0",
"@sofie-automation/server-core-integration": "1.41.0-in-testing.0",
"clone": "^2.1.2",
"dotenv": "^16.0.0",
"googleapis": "^100.0.0",
"lodash": "^4.17.21",
"marked": "^4.0.15",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"underscore": "^1.13.3",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.0.1",
"@types/clone": "^2.1.1",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/request-promise": "^4.1.48",
"@types/underscore": "^1.11.4",
"@types/uuid": "^8.3.4",
"codecov": "^3.8.3",
"gh-pages": "^3.2.3",
"jest": "^28.0.3",
"jest-haste-map": "^28.0.2",
"jest-resolve": "^28.0.3",
"mkdirp": "^1.0.4",
"npm-scripts-info": "^0.3.9",
"open-cli": "^7.0.1",
"standard-version": "^9.3.2",
"trash-cli": "^5.0.0",
"ts-jest": "^28.0.0",
"ts-lib": "^0.0.5",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"engines" : {
"node" : ">=16.0.0"
},
"standard-version": {
"message": "chore(release): %s",
"tagPrefix": "v"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}