This commit is contained in:
joshaber 2016-04-20 12:33:51 -04:00
Родитель 683a747ae1
Коммит 3844ceeca5
2 изменённых файлов: 9 добавлений и 2 удалений

3
.babelrc Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"presets": ["es2015"]
}

Просмотреть файл

@ -5,13 +5,17 @@
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"scripts": {
"test": "tsc && jasmine",
"prepublish": "npm run lint && tsc",
"compile": "tsc && babel build -d build",
"test": "npm run compile && jasmine",
"prepublish": "npm run lint && npm run compile",
"lint": "tslint lib/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"jasmine": "^2.4.1",
"temp": "^0.8.3",
"tslint": "^3.7.4",