-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.62 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": "tyson-starter",
"version": "1.0.0",
"description": "TysonStarter",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/types/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "npm run build",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/razroo/tyson-starter"
},
"keywords": [
"boilerplate",
"typescript",
"npm package boilerplate"
],
"author": "Razroo",
"license": "MIT",
"bugs": {
"url": "https://github.com/razroo/tyson-starter/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/razroo/tyson-starter#readme",
"devDependencies": {
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^27.0.7",
"prettier": "^2.3.0",
"ts-jest": "^27.1.5",
"typescript": "^4.0.3"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/**/*"
]
}