forked from dalelotts/angular-date-time-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "angular-date-time-input",
"description": "This angular directive allows users to manually enter date-time values in a variety of formats but displays the date value in the specified format.",
"author": "https://github.com/dalelotts/angular-date-time-input/graphs/contributors",
"license": "MIT",
"homepage": "https://github.com/dalelotts/angular-date-time-input",
"main": "src/dateTimeInput.js",
"keywords": [
"angular",
"date input",
"date",
"directive",
"moment",
"time input",
"time"
],
"dependencies": {
"angular": "^1.x",
"moment": "^2.x"
},
"devDependencies": {
"angular-mocks": "^1.x",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.2.0",
"grunt-bump": "^0.7.0",
"gulp": "^3.8.11",
"gulp-htmlmin": "^1.3.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"jasmine-core": "^2.4.1",
"jquery": "^2.2.0",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-threshold-reporter": "^0.1.12",
"lodash": "^4.5.0",
"phantomjs-prebuilt": "^2.1.4",
"plato": "^1.5.0",
"run-browser": "^2.0.2",
"semantic-release": "^6.2.0",
"standard": "^6.0.7",
"tape": "^4.4.0"
},
"scripts": {
"test": "npm run test-browserify && gulp",
"coverage:upload": "cat build/coverage/*/lcov.info | coveralls",
"test-browserify": "run-browser test/commonjs/browserify.test.js -b",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/dalelotts/angular-date-time-input.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}