-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.7 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
{
"name": "windows-iana",
"version": "0.0.0-development",
"description": "A small tool to convert Windows time zones to IANA",
"main": "dist/index.js",
"types": "dist/index.d.js",
"repository": {
"type": "git",
"url": "https://github.com/rubenillodo/windows-iana.git"
},
"author": "Rubén Illodo Brea <[email protected]>",
"license": "MIT",
"scripts": {
"precommit": "yarn lint && yarn test",
"build-zone-map": "node util/build-zone-map",
"build": "tsc -p tsconfig.json",
"prettier": "prettier --write '**/*.{js,ts,json}'",
"lint": "tslint -c tslint.json '{src,__tests__}/**/*.{js,ts}'",
"test": "jest",
"clean": "rimraf dist",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/mz": "^0.0.32",
"@types/xml2js": "^0.4.0",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"mz": "^2.7.0",
"prettier": "^1.7.4",
"rimraf": "^2.6.2",
"semantic-release": "^8.2.0",
"ts-jest": "^21.1.3",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.6.0",
"tslint-immutable": "^4.4.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.5.3",
"xml2js": "^0.4.19"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
".d.ts"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}