-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.89 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@jpex-js/babel-plugin",
"version": "1.8.0",
"main": "dist/index.js",
"scripts": {
"test": "yarn build && BABEL_DISABLE_CACHE=1 ava",
"test:debug": "ava debug",
"lint": "eslint './src/**/*.ts' --fix && tsc --noEmit",
"build:prepare": "rm -rf dist",
"build:js": "rollup --config ./rollup.config.js",
"build": "yarn build:prepare && yarn build:js",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"ci": "yarn install && yarn lint && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/jpex-js/babel-plugin.git"
},
"publishConfig": {
"access": "public"
},
"author": "Jack Ellis <jack.ellis@godaddy.com>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit"
}
},
"lint-staged": {
"linters": {
"src/**/*.{js,ts}": [
"eslint -c ./.eslintrc.js",
"git add"
]
}
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@commitlint/config-conventional": "^9.1.2",
"@team-griffin/eslint-config": "^3.3.0",
"@types/babel__core": "^7.1.9",
"@types/node": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"ava": "^3.12.1",
"eslint": "^7.7.0",
"rollup": "^2.26.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^17.1.1",
"typescript": "^4.0.2"
}
}