Update package.json. Use TypeScript 1.6 release.

This commit is contained in:
Benny van Reeven 2015-09-23 20:30:28 +02:00
parent 4aa64bb964
commit c61046f3f2

View file

@ -1,7 +1,8 @@
{ {
"name": "react-typescript", "name": "react-typescript",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "Minimal boilerplate for a single-page app using React, TypeScript with JSX (TSX), and Visual Studio Code.",
"repository": "bvanreeven/react-typescript",
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {
"react": "^0.13.3" "react": "^0.13.3"
@ -9,12 +10,12 @@
"devDependencies": { "devDependencies": {
"browserify": "^11.1.0", "browserify": "^11.1.0",
"mkdirp": "^0.5.1", "mkdirp": "^0.5.1",
"typescript": "^1.6.0-beta" "typescript": "^1.6.2"
}, },
"scripts": { "scripts": {
"build": "mkdirp public/js/app && tsc && browserify ./temp/app.js -o public/js/app/bundle.js", "build": "mkdirp public/js/app && tsc && browserify ./temp/app.js -o public/js/app/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1" "start": "http-server"
}, },
"author": "", "author": "Benny van Reeven",
"license": "ISC" "license": "MIT"
} }