-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.71 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.71 KB
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
71
72
73
{
"name": "legacify-charset",
"version": "0.2.0",
"author": "katashin",
"description": "Encode charset from UTF-8 to legacy one",
"keywords": [
"charset",
"encoding",
"convert",
"utf-8",
"cli"
],
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": "lib/cli.js",
"files": [
"lib"
],
"homepage": "https://github.com/ktsn/legacify-charset",
"bugs": "https://github.com/ktsn/legacify-charset/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/legacify-charset.git"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run build",
"clean": "rm -rf lib",
"build": "tsc -p src",
"dev": "jest --watch",
"lint": "eslint --ext js,ts src test",
"lint:fix": "eslint --fix --ext js,ts src test",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "/test/.+\\.spec\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.test.json"
}
}
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^5.0.4",
"@types/jest": "^23.3.0",
"@types/meow": "^4.0.1",
"@types/node": "^10.5.2",
"eslint": "^5.2.0",
"eslint-config-ktsn-typescript": "^1.1.1",
"jest": "^23.4.1",
"prettier": "1.13.7",
"prettier-config-ktsn": "^1.0.0",
"ts-jest": "^23.0.1",
"typescript": "^2.9.2"
},
"dependencies": {
"chalk": "^2.4.1",
"fast-glob": "^2.2.2",
"fs-extra": "^7.0.0",
"iconv-lite": "^0.4.23",
"meow": "^5.0.0"
}
}