-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "parse-pointer-encoder",
"version": "0.0.1",
"description": "Encode and Decode Parse objects to and from pointer strings",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"test": "jest --ci --silent",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "tsc"
},
"keywords": [],
"author": "Juan Camilo Guarín Peñaranda",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.2",
"@types/parse": "^1.11.3",
"jest": "^23.6.0",
"parse": "^2.1.0",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"typescript": "^3.0.3"
},
"dependencies": {},
"jest": {
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"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"
}