forked from dalelotts/angularjs-bootstrap-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.88 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "angularjs-bootstrap-datetimepicker",
"version": "0.0.0-semantic-release",
"description": "This directive allows you to add a datetime-picker to your form elements.",
"keywords": [
"angular",
"calendar",
"date picker",
"date",
"directive",
"moment",
"time picker",
"time"
],
"author": "https://github.com/dalelotts/angularjs-bootstrap-datetimepicker/graphs/contributors",
"bugs": {
"url": "https://github.com/dalelotts/angularjs-bootstrap-datetimepicker/issues"
},
"license": "MIT",
"homepage": "http://dalelotts.github.io/angularjs-bootstrap-datetimepicker",
"main": "index.js",
"style": "src/css/datetimepicker.css",
"scss": "src/scss/datetimepicker.scss",
"peerDependencies": {
"angular": "^1.x",
"moment": "^2.x"
},
"devDependencies": {
"angular-date-time-input": "^1.2.1",
"angular-mocks": "^1.6.4",
"autoprefixer": "^7.1.6",
"bootstrap": "^3.3.7",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"csscomb": "^4.0.1",
"csslint": "^1.0.5",
"cz-conventional-changelog": "^2.0.0",
"del": "^3.0.0",
"eslint": "^4.9.0",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-csscomb": "^3.0.8",
"gulp-csslint": "^1.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.4",
"gulp-postcss": "^7.0.0",
"gulp-sass": "^3.1.0",
"gulp-scss-lint": "^0.5.0",
"gulp-scss-lint-stylish": "^1.0.1",
"gulp-sourcemaps": "^2.6.0",
"gulp-standard": "^10.0.0",
"gulp-stylelint": "^5.0.0",
"jasmine-core": "^2.6.1",
"jquery": "^3.2.1",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-threshold-reporter": "^0.1.15",
"karma-webpack": "^2.0.3",
"lodash": "^4.17.4",
"matchdep": "^2.0.0",
"moment-timezone": "^0.5.13",
"phantomjs-prebuilt": "^2.1.14",
"plato": "^1.7.0",
"run-browser": "^2.0.2",
"semantic-release": "^8.2.0",
"standard": "^10.0.2",
"stylelint-config-standard": "^17.0.0",
"tape": "^4.6.3",
"webpack": "^3.8.1"
},
"scripts": {
"coverage:upload": "cat build/coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run test-commonjs && npm run test-webpack && npm run test-unit",
"test-commonjs": "run-browser test/commonjs/browserify.test.js -b",
"test-unit": "gulp",
"test-webpack": "karma start test/webpack/karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dalelotts/angularjs-bootstrap-datetimepicker.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}