UNPKG

1.11 kBJSONView Raw
1{
2 "name": "oly-fs",
3 "description": "Comfortably Numb",
4 "version": "0.8.5",
5 "license": "MIT",
6 "main": "lib/index.js",
7 "typings": "lib/index.d.ts",
8 "dependencies": {
9 "@types/fs-extra": "2.0.0",
10 "@types/mz": "0.0.31",
11 "fs-promise": "2.0.2"
12 },
13 "devDependencies": {
14 "@types/jest": "19.2.2",
15 "jest": "19.0.2",
16 "oly-core": "^0.8.5",
17 "ts-jest": "19.0.9",
18 "tslint": "5.1.0",
19 "typescript": "2.2.2"
20 },
21 "peerDependencies": {
22 "oly-core": "^0.8.5"
23 },
24 "scripts": {
25 "clean": "rm -rf node_modules coverage lib",
26 "build": "tsc",
27 "test": "jest"
28 },
29 "jest": {
30 "testEnvironment": "node",
31 "transform": {
32 ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
33 },
34 "testRegex": "(Test)\\.(ts|tsx)$",
35 "moduleFileExtensions": [
36 "ts",
37 "tsx",
38 "js",
39 "json"
40 ],
41 "testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
42 "collectCoverage": true,
43 "collectCoverageFrom": [
44 "src/**/*.{ts,tsx}"
45 ],
46 "coverageReporters": [
47 "html",
48 "json"
49 ]
50 }
51}