targetj 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -2
  2. package/Gruntfile.js +0 -42
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "targetj",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "keywords": [
5
5
  "targetj"
6
6
  ],
@@ -9,7 +9,6 @@
9
9
  "ahmad.wasfi"
10
10
  ],
11
11
  "description": "TargetJ is a JavaScript framework designed for creating animated and efficient web user interfaces.",
12
- "main": "Gruntfile.js",
13
12
  "repository": {
14
13
  "type": "git",
15
14
  "url": "git+https://github.com/livetrails/targetj.io.git"
package/Gruntfile.js DELETED
@@ -1,42 +0,0 @@
1
- module.exports = function(grunt) {
2
- var jsrc = ['src/*.js'];
3
-
4
- // Project configuration.
5
- grunt.initConfig({
6
-
7
- jshint:{
8
- options: {
9
- laxbreak: true,
10
- sub: true,
11
- expr: true,
12
- loopfunc: true
13
- },
14
- all: jsrc
15
- },
16
-
17
- concat: {
18
- dist: {
19
- src: jsrc,
20
- dest: 'build/targetj.js'
21
- }
22
- },
23
-
24
- uglify: {
25
- dist: {
26
- src: 'build/targetj.js',
27
- dest: 'build/targetj.<%= new Date().getTime() %>.min.js'
28
- }
29
- }
30
-
31
-
32
- });
33
-
34
- grunt.loadNpmTasks('grunt-contrib-jshint');
35
- grunt.loadNpmTasks('grunt-contrib-concat');
36
- grunt.loadNpmTasks('grunt-contrib-uglify');
37
- // Default task.
38
-
39
- grunt.registerTask('build', ['jshint','concat']);
40
- grunt.registerTask('default', ['jshint','concat','uglify']);
41
-
42
- };