forked from serverless/serverless-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "serverless-plugin-typescript",
"version": "1.1.3",
"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": "4.0.5",
"@types/jest": "^21.1.1",
"@types/lodash": "^4.14.62",
"jest": "^21.2.1",
"mock-fs": "^4.3.0",
"ts-jest": "^21.0.1",
"tslint": "^5.1.0"
},
"dependencies": {
"fs-extra": "^5.0.0",
"globby": "^6.1.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"
]
}
}