forked from mattlewis92/angular-bootstrap-calendar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "angular-bootstrap-calendar",
"version": "0.17.1",
"license": "MIT",
"repository": "[email protected]:mattlewis92/angular-bootstrap-calendar.git",
"peerDependencies": {
"angular": ">=1.3.0",
"bootstrap": "^3.3.4",
"moment": "^2.10.3"
},
"devDependencies": {
"angular-mocks": ">=1.3.0",
"conventional-changelog": "~0.5.1",
"css-loader": "~0.23.0",
"cz-conventional-changelog": "~1.1.4",
"eslint": "~1.10.1",
"eslint-config-mwl": "~0.3.0",
"eslint-loader": "~1.1.0",
"eslint-plugin-angular": "~0.13.0",
"extract-text-webpack-plugin": "~0.9.1",
"html-loader": "~0.3.0",
"htmlhint-loader": "~0.1.0",
"istanbul-instrumenter-loader": "~0.1.3",
"karma": "~0.13.3",
"karma-chai-plugins": "~0.6.0",
"karma-coverage": "~0.5.0",
"karma-mocha": "~0.2.0",
"karma-phantomjs-launcher": "~0.2.0",
"karma-phantomjs2-launcher": "~0.3.2",
"karma-sourcemap-loader": "~0.3.5",
"karma-webpack": "~1.7.0",
"less": "~2.5.1",
"less-loader": "~2.2.0",
"mocha": "~2.3.0",
"ng-annotate-loader": "0.0.10",
"node-libs-browser": "~0.5.2",
"open": "0.0.5",
"phantomjs": "~1.9.17",
"pre-git": "~1.3.1",
"style-loader": "~0.13.0",
"uglify-loader": "~1.3.0",
"validate-commit-msg": "~1.0.0",
"webpack": "~1.12.0",
"webpack-dev-server": "~1.12.0",
"webpack-notifier": "~1.2.1"
},
"engines": {
"node": ">=4.0.0"
},
"browser": "dist/js/angular-bootstrap-calendar-tpls.js",
"style": "dist/css/angular-bootstrap-calendar.css",
"optionalDependencies": {
"angular-touch": ">=1.3.0",
"angular-ui-bootstrap": "~0.14.3",
"interact.js": "~1.2.4"
},
"scripts": {
"test": "npm run test:min",
"test:unmin": "karma start",
"test:min": "karma start --min",
"test:watch": "karma start --watch",
"build:unmin": "webpack --config webpack.config.build.js",
"build:min": "webpack -p --config webpack.config.build.js",
"build:unmin:exclude-templates": "webpack --config webpack.config.build.js --exclude-templates",
"build:min:exclude-templates": "webpack -p --config webpack.config.build.js --exclude-templates",
"build": "npm run build:unmin && npm run build:min && npm run build:unmin:exclude-templates && npm run build:min:exclude-templates",
"start": "webpack-dev-server",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"commit": "git cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"pre-git": {
"commit-msg": "node ./node_modules/validate-commit-msg",
"post-commit": "git status"
}
}
}