forked from angular-ui/ui-date
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "angular-ui-date",
"version": "1.1.1",
"description": "This directive allows you to add a date-picker to your form elements.",
"main": "dist/date.js",
"scripts": {
"build": "npm run test && webpack",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md --same-file",
"commit": "git-cz",
"ghpages": "cp dist/date.js demo/assets/date.js && gh-pages -d demo",
"lint": "eslint src/** --ext .js",
"update": "bower update",
"start": "webpack-dev-server",
"test": "npm run lint && karma start --single-run",
"test:watch": "karma start",
"test:single": "karma start --single-run",
"test:ci": "TRAVIS=true npm run test"
},
"repository": {
"type": "git",
"url": "[email protected]:angular-ui/ui-date.git"
},
"author": "https://github.com/angular-ui/ui-date/graphs/contributors",
"license": "MIT",
"homepage": "http://angular-ui.github.com/ui-date",
"bugs": {
"url": "https://github.com/angular-ui/ui-date/issues"
},
"keywords": [
"AngularJS",
"directive",
"datepicker"
],
"devDependencies": {
"angular": "^1.4.0",
"angular-mocks": "^1.4.0",
"babel-core": "6.9.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"bower": "^1.7.0",
"commitizen": "^2.4.6",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "1.2.0",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^1.10.3",
"exports-loader": "0.6.2",
"expose-loader": "0.7.1",
"gh-pages": "0.11.0",
"jasmine-core": "^2.4.1",
"jquery": "2.1.4",
"jquery-ui": "1.10.5",
"karma": "^0.13.15",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-webpack": "1.7.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}