-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "@propellerheads/is-error",
"version": "0.0.5",
"description": "node library to check if the passed value is an error",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/fernandolguevara/is-error.git"
},
"scripts": {
"clean": "rimraf dist",
"test": "cross-env BABEL_ENV=production jest",
"list": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --extensions \".ts\" --out-dir dist --source-maps",
"prepublish": "npm run clean && npm run list && npm run test && npm run build"
},
"author": "Fernando López Guevara <fernando.lguevara@gmail.com> (https://github.com/fernandolguevara)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.0.1",
"babel-preset-minify": "^0.5.1",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^28.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}