-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "@alugha/ima",
"version": "2.2.1",
"description": "A library for asynchronously loading the Google IMA SDK with static typing for the SDK",
"license": "MIT",
"author": "Niklas Korz <[email protected]>",
"homepage": "https://alugha.com",
"repository": {
"type": "git",
"url": "git+https://github.com/alugha/typed-ima-sdk.git"
},
"bugs": {
"url": "https://github.com/alugha/typed-ima-sdk/issues"
},
"files": [
"lib"
],
"main": "lib/cjs/index.js",
"jsnext:main": "lib/esm/index.js",
"module": "lib/esm/index.js",
"typings": "lib/typings/index.d.ts",
"scripts": {
"precommit": "lint-staged",
"prepare": "yarn compile",
"lint": "eslint src/**/*.ts",
"precompile": "rimraf lib",
"compile": "yarn compile:esm && yarn compile:cjs && cp src/ima.d.ts lib/typings",
"compile:esm": "tsc --project tsconfig.json",
"compile:cjs": "tsc --project tsconfig.cjs.json"
},
"lint-staged": {
"*.ts": [
"yarn lint--fix",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^5.0.4"
}
}