-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "@dimensiondev/coda",
"version": "0.4.0",
"description": "Make Codec Interesting Again. ([I:b])",
"repository": "https://github.com/DimensionDev/coda.git",
"license": "AGPL-3.0-or-later",
"author": "clearloop <[email protected]>",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"build": "npm run build:emojis && rimraf cjs esm && tsc && tsc -p tsconfig.esm.json",
"build:emojis": "ts-node src/constants/.macros/build-emojis.ts",
"lint": "tsc --noEmit && eslint src --ext .ts --fix",
"prepublishOnly": "npm run build",
"test": "jest src"
},
"husky": {
"hooks": {
"pre-commit": "npm run build:emojis && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint && npm run test"
}
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^10.0.0",
"@sinonjs/text-encoding": "^0.7.1",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-esm-transformer": "^1.0.0",
"lint-staged": "^10.2.11",
"prettier": "^2.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.2"
}
}