-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "apitable-settings-generator",
"version": "1.1.0",
"description": "Generate settings with APITable power.",
"main": "./dist/index.js",
"bin": {
"asg": "./bin/index.js",
"apitable-settings-generator": "./bin/index.js"
},
"types": "./types/index.d.ts",
"files": [
"bin",
"dist",
"types"
],
"scripts": {
"build": "tsc",
"test": "jest --coverage tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apitable/apitable-settings-generator.git"
},
"keywords": [
"settings",
"generator",
"apitable"
],
"author": "Kelly Peilin Chan <[email protected]>",
"bugs": {
"url": "https://github.com/apitable/apitable-settings-generator/issues"
},
"homepage": "https://github.com/apitable/apitable-settings-generator",
"dependencies": {
"apitable": "^0.8.1",
"commander": "^9.4.1",
"dot-object": "^2.1.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/dot-object": "^2.1.2",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.189",
"jest": "^29.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"license": "MIT"
}