-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "eslint-plugin-aspida",
"version": "0.0.2",
"description": "support writing aspida api definition",
"repository": "git://github.com/ibuki2003/eslint-plugin-aspida",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "frourio inc",
"main": "dist/index.js",
"scripts": {
"test": "ts-mocha 'tests/**/*.ts' --paths",
"typecheck": "tsc --noEmit",
"build": "tsc --build tsconfig.build.json",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/experimental-utils": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^7.2.0",
"prettier": "^2.0.5",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=0.10.0"
},
"license": "ISC",
"files": [
"dist"
]
}