Files

55 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2017-04-17 15:26:32 +02:00
{
"name": "serverless-plugin-typescript",
2017-12-29 11:25:14 +01:00
"version": "0.0.0-semantic-release",
2017-04-22 22:10:22 +02:00
"main": "dist/src/index.js",
2017-05-09 12:47:48 +02:00
"files": [
"dist",
"package.json",
"README.md"
],
2017-04-17 15:26:32 +02:00
"scripts": {
"prepublish": "npm run build",
2017-06-10 12:20:54 +02:00
"precommit": "npm run test",
2017-04-22 15:39:36 +02:00
"build": "rm -rf dist && tsc",
2017-06-10 11:24:17 +02:00
"pretest": "npm run lint",
"test": "jest",
2017-04-22 15:39:36 +02:00
"lint": "tslint -c tslint.json 'src/**/*.ts'"
2017-04-17 15:26:32 +02:00
},
2017-04-29 23:11:40 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/serverless-plugin-typescript.git"
},
"keywords": [
"serverless",
"serverless plugin",
"typescript",
"aws lambda"
],
2017-04-17 15:26:32 +02:00
"devDependencies": {
"@types/fs-extra": "5.0.0",
"@types/jest": "22.0.1",
2017-12-29 10:16:03 +00:00
"@types/lodash": "4.14.91",
"jest": "22.0.4",
"mock-fs": "4.4.2",
"ts-jest": "22.0.1",
2017-12-29 10:16:03 +00:00
"tslint": "5.8.0"
2017-04-17 15:26:32 +02:00
},
"dependencies": {
"fs-extra": "^5.0.0",
"globby": "^7.0.0",
2017-04-17 15:26:32 +02:00
"lodash": "^4.17.4",
"typescript": "^2.2.2"
2017-06-10 11:24:17 +02:00
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
2017-04-17 15:26:32 +02:00
}
}