-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.99 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
{
"name": "angular-sanji-window",
"author": "Zack Yang <zack9433@gmail.com> (https://github.com/zack9433)",
"description": "Display content in a window at specific stage",
"version": "0.0.0-development",
"main": "dist/angular-sanji-window.js",
"config": {
"ghooks": {
"pre-commit": ""
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"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 90 --branches 90 --functions 90 --lines 90",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "cross-env NODE_ENV=development node server/dev-server.js",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"angular-mocks": "~1.6.8",
"angular": "~1.6.8",
"angular-animate": "~1.6.8",
"angular-aria": "~1.6.8",
"angular-busy": "~4.1.4",
"angular-material": "~1.1.6",
"angular-material-icons": "^0.7.1",
"codecov.io": "~0.1.6",
"sanji-common-devs-ui": "^7.0.0",
"semantic-release": "^12.2.4",
"travis-deploy-once": "^4.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Sanji-IO/angular-sanji-window.git"
},
"bugs": {
"url": "https://github.com/Sanji-IO/angular-sanji-window/issues"
},
"keywords": ["sanji", "angular-sanji", "angular-sanji-window"],
"license": "MIT",
"homepage": "https://github.com/Sanji-IO/angular-sanji-window",
"peerDependencies": {
"angular": ">=1.5.0 <1.7.0",
"angular-animate": ">=1.5.0 <1.7.0",
"angular-aria": ">=1.5.0 <1.7.0",
"angular-busy": "~4.1.4",
"angular-material": "~1.1.6",
"angular-material-icons": "^0.7.1"
}
}