-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "arb-converter-cli",
"version": "0.1.0",
"description": "CLI to convert ARB (Application Resource Bundle) files to different formats, and viceversa",
"author": "Jorge Coca",
"license": "MIT",
"directories": {
"doc": "docs"
},
"main": "dist/index.js",
"bin": {
"arb-converter": "dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"setup": "npm run build && npm install -g",
"build": "tsc -p .",
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/jest": "^24.0.15",
"@types/rimraf": "^2.0.2",
"rimraf": "^2.6.3",
"jest": "^24.1.0",
"ts-jest": "^23.1.3",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"coveragePathIgnorePatterns": [
"index.ts"
],
"collectCoverageFrom": [
"src/**"
],
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}