-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@jpex-js/node",
"version": "2.1.2",
"main": "dist/cjs/node.js",
"module": "dist/es/node.js",
"types": "dist/ts/index.d.ts",
"repository": "[email protected]:jpex-js/node.git",
"author": "Jack Ellis",
"license": "MIT",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint './src/**/*.ts' --fix && tsc --noEmit",
"build:prepare": "rm -rf dist",
"build:js": "rollup --config ./rollup.config.js",
"build:ts": "tsc -d --outDir dist/ts --emitDeclarationOnly --downlevelIteration ./src/index.ts",
"build": "yarn build:prepare && yarn build:js && yarn build:ts",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"ci": "yarn lint && yarn test && yarn build",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint",
"prettier --write --ignore-unknown"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.8.3",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@jpex-js/babel-plugin": "^1.8.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"husky": "^5.1.3",
"jest": "^26.6.3",
"jpex": "^5.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.23.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^17.1.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"jpex": "^5.0.0"
}
}