-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.92 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
{
"name": "xfyun-nls",
"version": "0.2.4",
"description": "a xfyun nls node module.",
"main": "index.js",
"files": [
"lib/**/*",
"nls.d.ts",
"index.js"
],
"types": "nls.d.ts",
"scripts": {
"lint": "eslint --fix src",
"test": "npm run build && mocha test/*.test.js",
"dev": "watch \"npm run build\" src",
"build": "babel src -d lib",
"prepublish": "npm run build",
"release": "np",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/funnyzak/xfyun-nls.git"
},
"keywords": [
"xfyun nls",
"nls",
"tts",
"xfyun",
"nodejs",
"funnyzak"
],
"author": "eric <[email protected]>",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/funnyzak/xfyun-nls/issues"
},
"homepage": "https://github.com/funnyzak/xfyun-nls#readme",
"dependencies": {
"@babel/runtime": "7.19.4",
"chalk": "4.1.2",
"crypto-js": "4.1.1",
"ws": "8.2.3"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/core": "7.19.3",
"core-js": "3.3.5",
"@babel/preset-env": "7.19.4",
"eslint": "8.2.0",
"expect.js": "0.3.1",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"mocha": "9.1.3",
"muk": "0.5.3",
"np": "7.6.2",
"prettier": "2.4.1",
"typescript": "4.5.2",
"watch": "1.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": "3.3.5"
}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"np": {
"yarn": false,
"contents": ".",
"branch": "master",
"releaseDraft": true
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}