UNPKG

2.19 kBJSONView Raw
1{
2 "name": "util.fixture",
3 "version": "0.0.64",
4 "author": "jmquigley <jmquigley@outlook.com>",
5 "description": "Test fixture library",
6 "main": "./index.js",
7 "types": "./index.d.ts",
8 "private": false,
9 "license": "MIT",
10 "debug": false,
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/jmquigley/util.fixture"
14 },
15 "bugs": {
16 "url": "https://github.com/jmquigley/util.fixture/issues"
17 },
18 "engines": {
19 "node": ">=7.5"
20 },
21 "dependencies": {
22 "fs-extra": "^7.0.1",
23 "klaw-sync": "^6.0.0",
24 "lodash": "^4.17.11",
25 "lorem-ipsum": "^1.0.6",
26 "rimraf": "^2.6.3",
27 "string-template": "^1.0.0",
28 "util.chdir": "0.0.37",
29 "util.constants": "^0.0.16",
30 "util.filelist": "0.0.32",
31 "util.join": "0.0.21",
32 "util.toolbox": "0.0.68",
33 "util.wait": "0.0.33",
34 "uuid": "^3.3.2"
35 },
36 "devDependencies": {
37 "@types/fs-extra": "5.0.4",
38 "@types/lodash": "^4.14.119",
39 "@types/lorem-ipsum": "^1.0.2",
40 "@types/node": "^10.12.18",
41 "@types/rimraf": "^2.0.2",
42 "@types/string-template": "^1.0.2",
43 "@types/uuid": "^3.4.4",
44 "coveralls": "^3.0.2",
45 "jest": "^23.6.0",
46 "tslint": "^5.12.0",
47 "typescript": "^3.2.2",
48 "typescript-babel-jest": "^1.0.5",
49 "util.pkgwrap": "^0.0.94"
50 },
51 "pkgwrap": {
52 "cleanup": [
53 "index.d.ts",
54 "index.js"
55 ]
56 },
57 "jest": {
58 "collectCoverage": true,
59 "coveragePathIgnorePatterns": [
60 "<rootDir>/node_modules/"
61 ],
62 "moduleFileExtensions": [
63 "js",
64 "jsx",
65 "ts",
66 "tsx",
67 "json"
68 ],
69 "notify": false,
70 "testPathIgnorePatterns": [
71 "<rootDir>/node_modules/",
72 "__tests__/helpers"
73 ],
74 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
75 "transform": {
76 "^.+\\.ts?$": "typescript-babel-jest"
77 },
78 "verbose": false
79 },
80 "scripts": {
81 "all": "yarn install && yarn run build && yarn test",
82 "build": "yarn clean && yarn run lint && pkgwrap --build",
83 "clean": "pkgwrap --clean",
84 "coverage": "pkgwrap --coverage --jest",
85 "lint": "pkgwrap --lint",
86 "prepublishOnly": "yarn run all",
87 "test": "pkgwrap --testing --jest"
88 }
89}