-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "---NPM-PACKAGE-IDENTIFIER---",
"sideEffects": false,
"version": "0.0.0",
"description": "---PACKAGE-DESCRIPTION---",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js",
"types": "./types/index.d.js"
},
"author": "Nick Kelly",
"homepage": "---GITHUB-URL---#readme",
"readme": "---GITHUB-URL---#readme",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "---GITHUB-URL---"
},
"bugs": {
"url": "---GITHUB-URL---/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",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:dec",
"build:cjs": "tsc -p config/tsconfig.cjs.json",
"build:esm": "tsc -p config/tsconfig.esm.json",
"build:dec": "tsc -p config/tsconfig.dec.json",
"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"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}