generated from NickKelly1/nkp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"name": "@nkp/error",
"version": "0.0.14",
"sideEffects": false,
"description": "Coerce an unknown error into an instance of the JavaScript Error class",
"main": "cjs/index.js",
"module": "es/index.js",
"author": "Nick Kelly",
"homepage": "https://github.com/NickKelly1/nkp-error#readme",
"readme": "https://github.com/NickKelly1/nkp-error#readme",
"license": "Mozilla Public License 2.0",
"private": false,
"repository": {
"type": "git",
"url": "[email protected]:NickKelly1/nkp-error.git"
},
"bugs": {
"url": "https://github.com/NickKelly1/nkp-error/issues"
},
"keywords": [
"TypeScript",
"JavaScript"
],
"scripts": {
"test": "jest -c config/jest.config.ts",
"test:coverage": "jest -c config/jest.config.ts --coverage",
"test:watch": "jest -c config/jest.config.ts --watch",
"build": "rimraf dist && rollup -c config/rollup.config.js",
"publish:prepare": "cp package.json dist && cp LICENSE dist && cp README.md dist",
"lint": "eslint . --ext '*/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint . --ext '*/**/*.{js,jsx,ts,tsx}' --fix",
"upgrade": "npm-check --update"
},
"devDependencies": {
"@jest/types": "^27.1.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"npm-check": "^5.9.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"dependencies": {
"@nkp/maybe": "0.0.27"
}
}