-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "BBCodeDown",
"version": "0.1.0",
"main": "dist/bbcodedown.js",
"module": "dist/bbcodedown.mjs",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"jest": "^27.4.5",
"prettier": "2.5.1",
"rollup": "^2.62.0",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"prettier": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest --coverage"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
]
},
"prettier": {
"printWidth": 100
}
}