-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "sanji-auth-ui",
"author": "Zack Yang <[email protected]> (https://github.com/zack9433)",
"description": "sanji-auth-ui",
"main": "dist/sanji-auth-ui.js",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "opt --in pre-commit --exec 'yarn validate'"
}
},
"scripts": {
"validate": "yarn test:once && yarn check-coverage",
"test": "cross-env NODE_ENV=test BABEL_ENV=test karma start",
"test:once": "cross-env BABEL_ENV=test karma start",
"prebuild": "rimraf dist && mkdir dist",
"build": "cross-env NODE_ENV=production webpack --config webpack.build.js --display-modules",
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 75 --branches 75 --functions 75 --lines 75",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "cross-env NODE_ENV=development node server/dev-server.js",
"prepublishOnly": "yarn build",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"devDependencies": {
"angular": "1.6.8",
"angular-animate": "~1.6.8",
"angular-aria": "~1.6.8",
"angular-http-auth": "^1.5.0",
"angular-material": "~1.1.6",
"angular-mocks": "~1.6.8",
"angular-storage": "^0.0.15",
"ng-file-upload": "^12.2.13",
"sanji-common-devs-ui": "^7.0.0",
"sanji-rest-ui": "^1.5.0",
"semantic-release": "^15.9.12",
"toastr": "~2.1.4",
"travis-deploy-once": "^5.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/Sanji-IO/sanji-auth-ui.git"
},
"bugs": {
"url": "https://github.com/Sanji-IO/sanji-auth-ui/issues"
},
"keywords": [
"sanji"
],
"license": "MIT",
"homepage": "https://github.com/Sanji-IO/sanji-auth-ui",
"peerDependencies": {
"angular": ">=1.5.0 <1.7.0",
"angular-http-auth": "^1.5.0",
"angular-storage": "^0.0.15",
"sanji-rest-ui": "^1.5.0"
},
"version": "0.0.0-development"
}