Adds initial TypeScript support
- still playing around here to make it work. Nothing real is implemented just yet. - Also adds working gulp configuration.
Showing
.jshintignore
deleted
100644 → 0
.jshintrc
deleted
100644 → 0
.travis.yml
deleted
100644 → 0
.vscode/settings.json
0 → 100644
dist/src/greet.js
0 → 100644
dist/src/main.js
0 → 100644
gulpfile.js
0 → 100644
... | ... | @@ -3,6 +3,10 @@ |
"version": "0.0.1", | ||
"description": "Node implementation of RFC 5545 generation and parsing", | ||
"main": "./dist/main.js", | ||
"typings": "lib/index", | ||
"files": [ | ||
"dist/" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
... | ... | @@ -11,5 +15,15 @@ |
"url": "git@git.gmu.edu:srct/lib-ics.git" | ||
}, | ||
"author": "Mark Stenglein", | ||
"license": "MIT" | ||
"license": "MIT", | ||
"devDependencies": { | ||
"gulp": "^3.9.1", | ||
"gulp-tslint": "^7.1.0", | ||
"gulp-typescript": "^3.1.5", | ||
"tslint": "^4.4.2", | ||
"typescript": "^2.1.6" | ||
}, | ||
"dependencies": { | ||
"@types/moment-timezone": "^0.2.34" | ||
} | ||
} |
src/greet.ts
0 → 100644
src/main.ts
0 → 100644
tsconfig.json
0 → 100644
tslint.json
0 → 100644
Please register or sign in to comment