-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "angular-web-notification",
"version": "2.0.1",
"description": "AngularJS service for displaying web notifications.",
"author": {
"name": "Sagie Gur-Ari",
"email": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "http://github.com/sagiegurari/angular-web-notification",
"repository": {
"type": "git",
"url": "http://github.com/sagiegurari/angular-web-notification.git"
},
"bugs": {
"url": "http://github.com/sagiegurari/angular-web-notification/issues"
},
"keywords": [
"angularjs",
"web",
"notification"
],
"main": "angular-web-notification.js",
"directories": {
"test": "test/spec",
"example": "example"
},
"scripts": {
"clean": "rm -Rf ./.nyc_output ./coverage",
"format": "js-beautify --config ./.jsbeautifyrc --file ./*.js ./test/**/*.js",
"lint-js": "eslint ./*.js ./test/**/*.js",
"lint-css": "stylelint --allow-empty-input ./docs/**/*.css",
"lint": "npm run lint-js && npm run lint-css",
"jstest": "karma start --single-run",
"docs": "jsdoc2md ./angular-web-notification.js > ./docs/api.md",
"test": "npm run clean && npm run format && npm run lint && npm run docs && npm run jstest",
"postpublish": "git fetch && git pull"
},
"dependencies": {
"angular": "^1",
"simple-web-notification": "latest"
},
"devDependencies": {
"angular-mocks": "^1",
"chai": "^4",
"eslint": "^8",
"jquery": "^3",
"js-beautify": "^1",
"jsdoc-to-markdown": "^8",
"karma": "^6",
"karma-chrome-launcher": "^3",
"karma-coverage": "^2",
"karma-mocha": "^2",
"karma-sinon-chai": "^2",
"mocha": "^10",
"sinon": "^14",
"sinon-chai": "^3",
"stylelint": "^13",
"stylelint-config-standard": "^22"
}
}