-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.82 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
63
64
65
66
67
68
69
70
{
"name": "@crazyfactory/frontend-commons",
"private": false,
"description": "Common frontend stuff",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf .jest/cache",
"prebuild": "npm run clean -s",
"build": "tsc",
"lint": "eslint \"src/**/**.ts*\"",
"test": "jest",
"prepublish": "npm run clean && npm run build"
},
"author": "dev@crazy-factory.com",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@crazyfactory/tslint-rules": "^1.6.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/eslint-plugin-tslint": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.6.3",
"typestyle": "^2.0.4"
},
"peerDependencies": {
"typestyle": "^2.0.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"preset": "ts-jest",
"cacheDirectory": "<rootDir>/.jest/cache",
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleDirectories": [
"node_modules",
"./"
],
"setupFilesAfterEnv": [
"./jest/bootstrap.ts"
]
},
"dependencies": {
"base-64": "^0.1.0"
}
}