-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 930 Bytes
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
{
"name": "yabf",
"version": "2.1.0",
"description": "Yet Another Basic Framework for NodeJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:Mindsers/yabf.git",
"author": "Mindsers <dev@nathanaelcherrier.com>",
"license": "MIT",
"private": false,
"scripts": {
"test:unit": "ava",
"test:lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"test": "yarn test:lint && yarn test:unit",
"build": "tsc",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/node": "12.12.7",
"ava": "2.4.0",
"eslint": "7.18.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "3.9.7"
},
"engines": {
"yarn": "^1.0.0"
}
}