-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "suqin",
"version": "0.1.0",
"description": "Connect kinds of account management system and expose it to unified API, so it is easy to use.",
"main": "./lib",
"scripts": {
"git-commit": "f(){ git add $1 ; git-cz;};f",
"commit": "npm run git-commit",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"test": "mocha --reporter spec --require should test/*.test.js --bail",
"test-cov": "istanbul cover _mocha -- -u exports --require should test/*.test.js --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/DFocusFE/suqin.git"
},
"keywords": [
"suqin",
"api",
"middleware",
"user",
"Active Directory",
"AD"
],
"author": "ZhouRui<[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1"
},
"devDependencies": {
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.5",
"conventional-gitlab-releaser": "^2.1.10",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"should": "^13.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}