You've already forked serverless-plugin-typescript
mirror of
https://github.com/encounter/serverless-plugin-typescript.git
synced 2026-03-30 11:37:55 -07:00
55 lines
1.2 KiB
JSON
55 lines
1.2 KiB
JSON
{
|
|
"name": "serverless-plugin-typescript",
|
|
"version": "0.0.0-semantic-release",
|
|
"main": "dist/src/index.js",
|
|
"files": [
|
|
"dist",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"prepublish": "npm run build",
|
|
"precommit": "npm run test",
|
|
"build": "rm -rf dist && tsc",
|
|
"pretest": "npm run lint",
|
|
"test": "jest",
|
|
"lint": "tslint -c tslint.json 'src/**/*.ts'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/graphcool/serverless-plugin-typescript.git"
|
|
},
|
|
"keywords": [
|
|
"serverless",
|
|
"serverless plugin",
|
|
"typescript",
|
|
"aws lambda"
|
|
],
|
|
"devDependencies": {
|
|
"@types/fs-extra": "5.0.0",
|
|
"@types/jest": "22.0.1",
|
|
"@types/lodash": "4.14.91",
|
|
"jest": "22.0.4",
|
|
"mock-fs": "4.4.2",
|
|
"ts-jest": "22.0.1",
|
|
"tslint": "5.8.0"
|
|
},
|
|
"dependencies": {
|
|
"fs-extra": "^5.0.0",
|
|
"globby": "^7.0.0",
|
|
"lodash": "^4.17.4",
|
|
"typescript": "^2.2.2"
|
|
},
|
|
"jest": {
|
|
"transform": {
|
|
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
},
|
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js"
|
|
]
|
|
}
|
|
}
|