This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·50 lines (50 loc) · 1.59 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
{
"name": "babel-deno",
"private": true,
"version": "0.4.1",
"description": "Tools for transpiling Node APIs to their Deno counterparts",
"scripts": {
"clean": "lerna run clean",
"test:all": "cross-env BABEL_DISABLE_CACHE=1 lerna run test",
"lint": "run-s lint:js lint:misc",
"lint:fix": "run-s lint:js:fix lint:misc:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint --fix .",
"lint:misc": "prettier --check .",
"lint:misc:fix": "prettier --write .",
"version": "lerna version && ./version.mjs && conventional-changelog -p angular -i changelog.md -s && git commit --no-edit --no-verify --amend"
},
"engines": {
"node": ">=14.3.0"
},
"author": "Edwin Kofler",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/types": "^7.9.6",
"@types/babel__core": "^7.1.7",
"@types/babel__generator": "^7.6.1",
"@types/babel__traverse": "^7.0.11",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"conventional-changelog-cli": "^2.0.34",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lerna": "^3.22.0",
"lint-staged": "^10.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"prettier-plugin-toml": "^0.3.1",
"prompts": "^2.3.2",
"standard-version": "^8.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}