-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "@flybywiresim/igniter",
"version": "1.3.0",
"types": "dist/index.d.ts",
"description": "An intelligent task runner written in Typescript.",
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/igniter.git"
},
"author": "Theodore Messinezis",
"main": "dist/index.mjs",
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .ts ./",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/jest": "^26.0.20",
"@types/mkdirp": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"find-up": "^4.1.0",
"hasha": "^5.2.2",
"jest": "^26.6.3",
"mkdirp": "^1.0.4",
"reflect-metadata": "^0.1.13",
"rollup": "^2.39.0",
"rollup-plugin-add-shebang": "^0.3.1",
"task-pool": "^0.1.1",
"ts-jest": "^26.5.1",
"tslib": "^2.1.0",
"tsyringe": "^4.4.0",
"typescript": "^4.1.5"
},
"bin": {
"igniter": "dist/binary.mjs"
}
}