-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.92 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
{
"name": "angular-json-calendar",
"version": "2.0.0",
"description": "An Angular service that generates calendar data as a json object.",
"keywords": [
"angular",
"calendar",
"json",
"date",
"dates",
"schedule"
],
"author": "Benjamin Charity <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benjamincharity/angular-json-calendar/issues"
},
"homepage": "https://github.com/benjamincharity/angular-json-calendar",
"main": "dist/angular-json-calendar.js",
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "WEBPACK_ENV=build webpack && osx-notifier --type \"pass\" --title \"Build successful\" --message \"gg\" --group \"npmBuild\"",
"build:css": "npm run scss:compressed && npm run scss:expanded && npm run autoprefixer",
"autoprefixer": "postcss -u autoprefixer -r dist/*.css",
"scss:compressed": "node-sass --output-style compressed -o dist/ src/calendar.scss && mv dist/calendar.css dist/angular-json-calendar.min.css",
"scss:expanded": "node-sass --output-style expanded -o dist/ src/calendar.scss && mv dist/calendar.css dist/angular-json-calendar.css",
"watch:css": "onchange 'src/*.scss' -- npm run build:css",
"watch:js": "onchange 'src/*.js' 'src/*.html' -e 'src/*.spec.js' -- npm run build:js",
"watch": "parallelshell 'npm run test' 'npm run watch:css' 'npm run watch:js'",
"test": "karma start --singleRun=true"
},
"repository": {
"type": "git",
"url": "https://github.com/benjamincharity/angular-json-calendar.git"
},
"dependencies": {
"angular": "^1.4.0",
"moment": "^2.13.0"
},
"devDependencies": {
"angular": "^1.4.0",
"angular-mocks": "^1.5.8",
"autoprefixer": "^6.3.3",
"babel": "6.3.13",
"babel-core": "^6.11.4",
"babel-eslint": "5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "^6.3.13",
"eslint": "1.7.2",
"eslint-config-moment": "^1.5.0",
"eslint-loader": "1.1.0",
"eslint-plugin-angular": "^1.4.1",
"html-loader": "^0.4.2",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"minifier": "^0.7.1",
"ng-annotate-loader": "^0.1.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"ngtemplate-loader": "^1.3.1",
"node-sass": "^3.4.2",
"onchange": "^2.2.0",
"osx-notifier": "^0.2.2",
"parallelshell": "^2.0.0",
"phantomjs": "^2.1.7",
"postcss-cli": "^2.5.1",
"sass-loader": "^3.1.2",
"source-map": "^0.5.3",
"webpack": "1.12.9",
"webpack-dev-server": "^1.14.1",
"yargs": "3.32.0"
}
}