generated from KeiryoJS/typescript-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "@neocord/project",
"version": "1.0.0",
"description": "A project in the neocord family!",
"main": "dist/index.js",
"repository": "[email protected]:neo-cord/typescript-project.git",
"author": "neocord team",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc --removeComments",
"lint": "eslint src --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "ava"
},
"files": [
"!*.test.*",
"!*.spec.*",
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@ava/typescript": "1.1.1",
"@neocord/eslint-config": "neo-cord/eslint-config",
"@types/node": "14.14.41",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"ava": "3.15.0",
"eslint": "7.25.0",
"typescript": "4.2.4"
}
}