-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "imageboss-js",
"version": "2.0.0",
"description": "Typescript/Javascript API for Imageboss",
"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 P",
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.4",
"jest": "^21.2.1",
"ts-jest": "^21.1.3",
"tslint": "^5.8.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^2.5.3"
},
"dependencies": {},
"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/imageboss"
},
"bugs": {
"url": "https://github.com/owsas/imageboss/issues"
},
"homepage": "https://github.com/owsas/imageboss#readme"
}