-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
{
"name": "io-guard",
"version": "0.2.2",
"main": "./bundle.common.js",
"module": "./bundle.es6.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Sean May",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/seanmay/io-guard"
},
"bugs": {
"url": "https://github.com/seanmay/io-guard/issues"
},
"homepage": "https://github.com/seanmay/io-guard",
"scripts": {
"test": "jest",
"test:ci": "jest --coverage --ci --runInBand && codecov",
"build": "tsc --strict --outDir dist -d --inlineSourceMap true --inlineSources --module es2015 src/index.ts && rollup -c"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.53",
"@types/jest": "22",
"babel-core": "^7.0.0-beta.3",
"codecov": "^3.0.4",
"dot-json": "^1.0.4",
"jest": "22",
"rollup": "^0.62.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-typescript": "^1.1.2",
"ts-jest": "22",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {}
}