-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
95 lines (95 loc) · 2.24 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
{
"name": "@vikadata/vika",
"version": "2.0.0-beta.4",
"description": "维格表官方 JavaScript SDK",
"main": "./es/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "yarn clean && tsc -p tsconfig.build.json && webpack",
"release": "standard-version",
"clean": "rm -rf ./es/*",
"lint": "eslint lib/",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vikadata/vika.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"vikadata",
"vika js sdk"
],
"author": "vikadata",
"license": "MIT",
"bugs": {
"url": "https://github.com/vikadata/vika.js/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "eslint"
}
},
"standard-version": {
"path": ".",
"skip": {
"tag": true
},
"releaseCommitMessageFormat": "chore(vika.js): {{currentTag}}"
},
"lint-staged": {
"packages/*/src/**/!(*system_config|strings).{js,ts,tsx}": "tslint"
},
"homepage": "https://github.com/vikadata/vika.js#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.9",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@types/axios": "^0.14.0",
"@types/form-data": "^2.5.0",
"@types/qs": "^6.9.4",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"standard-version": "^9.0.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"ts-node": "^10.0.0",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".(spec|test).ts$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleDirectories": [
"node_modules"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"axios": "^0.19.2",
"form-data": "^3.0.0",
"qs": "^6.9.4"
}
}