-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
102 lines (102 loc) · 2.6 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
96
97
98
99
100
101
102
{
"name": "dubbo.js",
"version": "0.4.0",
"devDependencies": {
"@types/assert": "^0.0.31",
"@types/mocha": "^5.2.3",
"@types/node": "^10.3.5",
"@types/rewire": "^2.5.28",
"babel-eslint": "^8.2.5",
"chai": "^4.1.2",
"commitizen": "^2.10.1",
"conventional-changelog": "^2.0.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-alloy": "^1.4.2",
"eslint-plugin-typescript": "^0.12.0",
"husky": "^1.0.0-rc.9",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rewire": "^4.0.1",
"sinon": "^6.1.0",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.4.0",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^16.0.0"
},
"scripts": {
"tsn": "ts-node",
"dev": "npm run build -- --watch",
"build": "tsc",
"test": "TS_NODE_PROJECT=./tsconfig.json mocha test/*/*.ts test/*/*/*.ts",
"cover": "TS_NODE_PROJECT=./tsconfig.json nyc mocha test/*/*.ts test/*/*/*.ts && nyc report --reporter=html",
"lint": "eslint src --ext .ts",
"publish:next": "npm publish --tag next",
"prepare": "rm -rf lib/* && npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"addChangelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kaola-fed/dubbo.js.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaola-fed/dubbo.js/issues"
},
"homepage": "https://github.com/kaola-fed/dubbo.js#readme",
"dependencies": {
"address": "^1.0.3",
"assert": "^1.4.1",
"bufferhelper": "^0.2.1",
"cluster-client": "^2.1.1",
"generic-pool": "^3.4.2",
"hessian.js": "^2.8.1",
"once": "^1.4.0",
"p-timeout": "^2.0.1",
"sdk-base": "^3.4.0",
"semver": "^5.5.1",
"urllib": "^2.30.0",
"zookeeper-cluster-client": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -- --fix; git add -A",
"pre-push": "npm test"
}
},
"nyc": {
"nyc": {
"include": [
"test/*/*.ts",
"test/*/*/*.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}