-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
68 lines (68 loc) · 2.07 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
{
"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.15.x"
},
"devDependencies": {
"angular-mocks": "^1.x",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.8.1",
"gulp": "^3.9.1",
"gulp-htmlmin": "^3.0.0",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.1",
"gulp-standard": "^8.0.2",
"jasmine-core": "^2.5.2",
"jquery": "^3.1.1",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-threshold-reporter": "^0.1.15",
"karma-webpack": "^1.8.0",
"lodash": "^4.16.4",
"phantomjs-prebuilt": "^2.1.13",
"plato": "^1.7.0",
"run-browser": "^2.0.2",
"semantic-release": "^6.3.0",
"standard": "^8.4.0",
"tape": "^4.6.2",
"webpack": "^1.13.2"
},
"scripts": {
"coverage:upload": "cat build/coverage/lcov.info | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "npm run test-browserify && npm run test-webpack && gulp",
"test-browserify": "run-browser test/commonjs/browserify.test.js -b",
"test-webpack": "karma start test/webpack/karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dalelotts/angular-date-time-input.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}