-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 923 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 923 Bytes
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
{
"name": "@aloompa/abstract",
"version": "1.4.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest --maxWorkers=2",
"test:watch": "jest --maxWorkers=2 --watch",
"build": "tsc",
"start": "tsc --watch",
"release": "tsc; publish"
},
"devDependencies": {
"@types/jest": "24.0.15",
"babel-jest": "24.5.0",
"jest": "24.5.0",
"publish": "0.6.0",
"ts-jest": "24.0.0",
"ts-loader": "5.3.3",
"typescript": "3.3.4000",
"@types/node": "^12.12.5"
},
"jest": {
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "./node_modules/ts-jest",
".*": "babel-jest"
},
"testRegex": "/__tests__/.*\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"/lib"
],
"collectCoverage": false
},
"author": "Aloompa",
"license": "MIT"
}