-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "grist-api",
"version": "0.1.7",
"description": "NodeJS client for interacting with Grist",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "mocha 'test/lib/*.{js,ts}'",
"prepack": "npm run build && npm test"
},
"repository": "https://github.com/gristlabs/grist-api",
"author": "Grist Labs",
"license": "Apache-2.0",
"files": [
"dist",
"lib"
],
"dependencies": {
"axios": "^0.21.1",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^8.1.1",
"@types/lodash": "^4.14.159",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.54",
"@types/node-fetch": "^2.5.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.3",
"replay": "^2.4.0",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"typescript-tslint-plugin": "^0.5.5"
}
}