-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.27 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": "podb",
"version": "0.0.14",
"main": "dist/podb.js",
"types": "dist/podb.d.ts",
"homepage": "https://github.com/vharitonsky/podb",
"bugs": {
"url": "https://github.com/vharitonsky/podb/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vharitonsky/podb.git"
},
"keywords": [
"pofile",
"translation",
"sql"
],
"scripts": {
"preversion": "npm run build && npm test",
"test": "mkdir -p dist && jest",
"build": "tsc",
"upgrade": "yarn upgrade-interactive",
"pretty": "prettier --write \"./src/**/*.ts\" \"./tests/**/*.ts\"",
"precommit": "lint-staged"
},
"dependencies": {
"flora-sql-parser": "0.8.0",
"pofile": "1.0.11"
},
"devDependencies": {
"@types/node": "10.12.18",
"jest": "23.6.0",
"prettier": "1.15.3",
"ts-jest": "21.2.2",
"typescript": "3.2.2"
},
"lint-staged": {
"*.{ts,css,tsx}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}