-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1006 Bytes
/
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
{
"name": "grist-form-submit",
"version": "0.1.0",
"description": "Turn form submissions on webpages into new records in Grist documents",
"main": "grist-form-submit.js",
"scripts": {
"test": "MOCHA_WEBDRIVER_HEADLESS=1 mocha test",
"test-debug": "mocha test -b --no-exit"
},
"author": "Grist Labs",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gristlabs/grist-form-submit.git"
},
"bugs": {
"url": "https://github.com/gristlabs/grist-form-submit/issues"
},
"homepage": "https://github.com/gristlabs/grist-form-submit#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/express": "^4.17.14",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/selenium-webdriver": "^4.1.9",
"express": "^4.18.2",
"mocha-webdriver": "^0.2.11",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"overrides": {
"mocha-webdriver": {
"chromedriver": "^111"
}
}
}