Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
#125 - adds some esm files
Browse files Browse the repository at this point in the history
  • Loading branch information
teles committed May 24, 2018
1 parent 02d57fb commit d012dad
Show file tree
Hide file tree
Showing 11 changed files with 126 additions and 14,754 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ deploy_key.pub
/coverage/
/node_modules/
npm-debug.log
frontpress-es6.js
frontpress.sublime-workspace
/src/js/components/frontpress-provider/constants/frontpress.constant.js
frontpress.json
/src/js/frontpress.template-cache.js
.idea
.idea
3 changes: 3 additions & 0 deletions .jshintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
/src/js/components/frontpress-provider/constants/frontpress.constant.js
/src/js/frontpress.template-cache.js
/karma.conf.js
/src
/tasks
webpack.config.js
141 changes: 76 additions & 65 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,67 +1,78 @@
{
"name": "frontpress",
"version": "1.0.9",
"description": "Full front-end AngularJS template for WordPress Rest API.",
"main": "release/frontpress.min.js",
"dependencies": {
"angular": "1.5.8",
"angular-ui-router": "0.3.1",
"angular-disqus": "1.1.3",
"ng-infinite-scroll": "1.3.0"
},
"devDependencies": {
"angular-mocks": "1.5.8",
"buffer-to-vinyl": "1.1.0",
"codacy-coverage": "2.0.0",
"gulp": "3.9.1",
"gulp-angular-templatecache": "2.0.0",
"gulp-concat": "2.6.0",
"gulp-connect": "5.0.0",
"gulp-inject": "4.1.0",
"gulp-load-tasks": "0.8.4",
"gulp-ng-config": "1.3.1",
"gulp-plumber": "1.1.0",
"gulp-uglify": "2.0.0",
"gulp-watch": "4.3.9",
"inquirer": "2.0.0",
"jasmine-core": "2.5.2",
"jshint": "2.9.4",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-spec-reporter": "0.0.26",
"merge-stream": "1.0.0",
"nodemon": "1.10.2",
"pre-commit": "1.2.2",
"run-sequence": "1.1.5"
},
"scripts": {
"test": "karma start --browsers PhantomJS && cat ./coverage/report-lcov/lcov.info | ./node_modules/.bin/codacy-coverage",
"jshint": "jshint -c .jshintrc --exclude-path .jshintignore .",
"dev": "gulp release && gulp build connect",
"watch": "gulp watch"
},
"pre-commit": ["jshint"],
"repository": {
"type": "git",
"url": "git+https://github.com/frontpressorg/frontpress.git"
},
"author": "Jota Teles",
"npmName": "frontpress",
"npmFileMap": [
{
"basePath": "release",
"files": [
"**/frontpress.*.js"
]
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/frontpressorg/frontpress/issues"
},
"homepage": "https://github.com/frontpressorg/frontpress#readme"
"name": "frontpress",
"version": "1.0.9",
"description": "Full front-end AngularJS template for WordPress Rest API.",
"main": "release/frontpress.min.js",
"dependencies": {
"angular": "1.5.8",
"angular-ui-router": "0.3.1",
"angular-disqus": "1.1.3",
"ng-infinite-scroll": "1.3.0"
},
"devDependencies": {
"angular-mocks": "1.5.8",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.6.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"buffer-to-vinyl": "1.1.0",
"codacy-coverage": "2.0.0",
"gulp": "3.9.1",
"gulp-angular-templatecache": "2.0.0",
"gulp-babel": "7.0.1",
"gulp-concat": "2.6.0",
"gulp-connect": "5.0.0",
"gulp-inject": "4.1.0",
"gulp-load-tasks": "0.8.4",
"gulp-ng-config": "1.3.1",
"gulp-plumber": "1.1.0",
"gulp-uglify": "2.0.0",
"gulp-watch": "4.3.9",
"inquirer": "2.0.0",
"jasmine-core": "2.5.2",
"jshint": "2.9.4",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-spec-reporter": "0.0.26",
"merge-stream": "1.0.0",
"nodemon": "1.10.2",
"pre-commit": "1.2.2",
"run-sequence": "1.1.5",
"webpack": "4.8.2",
"webpack-cli": "2.1.3"
},
"scripts": {
"test": "karma start --browsers PhantomJS && cat ./coverage/report-lcov/lcov.info | ./node_modules/.bin/codacy-coverage",
"jshint": "jshint -c .jshintrc --exclude-path .jshintignore .",
"dev": "gulp release && gulp build connect",
"watch": "gulp watch",
"prebuild": "webpack --config webpack.config.js"
},
"pre-commit": [
"jshint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frontpressorg/frontpress.git"
},
"author": "Jota Teles",
"npmName": "frontpress",
"npmFileMap": [
{
"basePath": "release",
"files": [
"**/frontpress.*.js"
]
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/frontpressorg/frontpress/issues"
},
"homepage": "https://github.com/frontpressorg/frontpress#readme"
}
Loading

0 comments on commit d012dad

Please sign in to comment.