-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.15 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
{
"name": "@codahq/packs-examples",
"version": "0.0.1",
"description": "Examples of Coda (coda.io) packs.",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register examples/**/*_test.ts",
"integration": "mocha --require ts-node/register examples/**/*_integration.ts",
"compile": "tsc --noEmit",
"lint": "find . -name \"*.ts\" | grep -v /node_modules/ | grep -v .d.ts | xargs node_modules/.bin/eslint",
"lint-fix": "find . -name \"*.ts\" | grep -v /node_modules/ | grep -v .d.ts | xargs node_modules/.bin/eslint --fix",
"validate": "find examples/**/pack.ts -name '*.ts' | xargs -n1 -I {} sh -c 'NODE_OPTIONS=\"--no-deprecation\" coda validate {} || echo \"While validating {}\n\";'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coda/packs-examples.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/coda/packs-examples/issues"
},
"homepage": "https://github.com/coda/packs-examples#readme",
"engines": {
"npm": ">=9",
"node": ">=18"
},
"dependencies": {
"@codahq/packs-sdk": "^1.7.5",
"content-disposition": "0.5.4",
"form-data": "4.0.0",
"jsrsasign": "11.1.0",
"luxon": "3.4.4",
"mime-types": "2.1.35"
},
"devDependencies": {
"@types/chai": "4.3.12",
"@types/chai-as-promised": "7.1.7",
"@types/content-disposition": "0.5.8",
"@types/jsrsasign": "10.5.12",
"@types/luxon": "3.4.2",
"@types/mime-types": "2.1.3",
"@types/mocha": "10.0.6",
"@types/node": "18.19.18",
"@types/sinon": "10.0.20",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/experimental-utils": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"chai": "4.4.1",
"chai-as-promised": "7.1.1",
"eslint": "8.57.0",
"eslint-plugin-ban": "1.6.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-local": "1.0.0",
"eslint-plugin-prefer-let": "3.0.1",
"eslint-plugin-prettier": "5.1.3",
"json-schema": "0.4.0",
"mocha": "10.3.0",
"prettier": "3.4.2",
"sinon": "17.0.0",
"ts-node": "10.9.2",
"typescript": "5.2.2"
},
"resolutions": {
"xml2js": "0.6.2"
}
}