-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 3.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "escapin",
"version": "0.4.9",
"description": "Escapin the Transpiler for Escaping from Complicated Usage of Cloud Services and APIs",
"main": "bin/index.js",
"engines": {
"node": ">=10.0.0"
},
"bin": {
"escapin": "bin/cli.js"
},
"files": [
"/bin",
"/templates"
],
"scripts": {
"prebuild": "rimraf bin",
"build": "tsc",
"postbuild": "ncp bin/src bin && rimraf bin/src bin/package.json",
"format": "prettier --write --ignore-path .gitignore \"**/*.{ts,js,json,yaml,yml,md}\"",
"test": "run-p test:*",
"test:coverage": "nyc npx mocha",
"test:lint": "eslint --ignore-path .gitignore --cache .",
"test:prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{ts,js,json,yaml,yml,md}\"",
"test:typecheck": "tsc --noEmit",
"start": "ts-node src/cli.ts"
},
"repository": {
"type": "git",
"url": "git@github.com:FujitsuLaboratories/escapin.git"
},
"keywords": [
"serverless",
"serverless framework",
"typescript",
"babel",
"transpiler"
],
"author": "Kimura, Kosaku <kimura.kosaku@fujitsu.com>",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.5",
"@babel/parser": "^7.12.5",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.5",
"@babel/types": "^7.12.6",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"cosmiconfig": "^7.0.0",
"deasync": "^0.1.20",
"execa": "^4.1.0",
"https-proxy-agent": "^5.0.0",
"ignore": "^5.1.8",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"openapi-types": "^7.0.1",
"package-json": "^6.5.0",
"rimraf": "^3.0.2",
"swagger-parser": "^10.0.2",
"typescript": "^3.9.7",
"uuid": "^8.3.1",
"validator": "^13.1.17"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/babel__code-frame": "7.0.2",
"@types/babel__generator": "7.6.2",
"@types/babel__template": "7.0.3",
"@types/babel__traverse": "7.0.13",
"@types/chai": "4.2.14",
"@types/deasync": "0.1.1",
"@types/eslint": "7.2.4",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/js-yaml": "3.12.5",
"@types/lodash": "4.14.164",
"@types/mkdirp": "1.0.1",
"@types/mocha": "8.0.3",
"@types/ncp": "2.0.4",
"@types/node": "13.13.5",
"@types/node-fetch": "2.5.7",
"@types/prettier": "2.1.5",
"@types/rimraf": "3.0.0",
"@types/uuid": "8.3.0",
"@types/validator": "13.1.0",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"chai": "4.2.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.4",
"git-list-updated": "1.2.1",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"mocha": "8.2.1",
"ncp": "2.0.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "2.1.2",
"ts-node": "9.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
}
}