-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "open-categories",
"version": "1.3.0",
"description": "An open categorization system for platforms that handle information about food, fashion, technology and others",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"test": "jest --ci --silent",
"build": "tsc",
"watch": "tsc -w",
"prepublish": "tsc",
"postbuild": "node out/_postBuild.js"
},
"keywords": [],
"author": "Juan Camilo Guarín P",
"license": "MIT",
"devDependencies": {
"@types/is": "0.0.19",
"@types/jest": "22.1.3",
"@types/node": "8.10.2",
"jest": "21.2.1",
"ts-jest": "22.4.2",
"tslint": "6.1.3",
"tslint-config-airbnb": "5.7.0",
"typescript": "4.0.2"
},
"dependencies": {
"array-uniq": "^1.0.3",
"fuse.js": "^6.0.0",
"is": "^3.2.1",
"js-yaml": "^3.10.0",
"require-yaml": "^0.0.1"
},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"mapCoverage": true,
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"modulePathIgnorePatterns": [
"<rootDir>/out"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/owsas/typescript-module-template.git"
},
"bugs": {
"url": "https://github.com/owsas/typescript-module-template/issues"
},
"homepage": "https://github.com/owsas/typescript-module-template#readme"
}