-
-
Notifications
You must be signed in to change notification settings - Fork 321
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "angular-modal-service",
"version": "0.15.6",
"description": "AngularJS Service for showing Modals and Popups",
"main": "./index.js",
"scripts": {
"build": "webpack --mode=production && uglifyjs ./dst/angular-modal-service.js --compress --mangle -o ./dst/angular-modal-service.min.js --source-map",
"start": "webpack-dev-server --inline --content-base ./samples",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"test-debug": "karma start --no-single-run --browsers ChromeHeadless karma.conf.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/dwmkerr/angular-modal-service.git"
},
"keywords": [
"angular",
"angularjs",
"modal",
"popup"
],
"author": "Dave Kerr (github.com/dwmkerr)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwmkerr/angular-modal-service/issues"
},
"homepage": "https://github.com/dwmkerr/angular-modal-service",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"angular": "^1.8.0",
"angular-mocks": "1.8.x",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.2",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.2",
"sinon": "^7.0.0",
"standard-version": "^9.0.0",
"uglify-js": "^3.3.9",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}