UNPKG

2.38 kBJSONView Raw
1{
2 "name": "util.fixture",
3 "version": "0.0.72",
4 "author": "jmquigley <jmquigley@outlook.com>",
5 "description": "Test fixture library",
6 "private": false,
7 "license": "MIT",
8 "debug": false,
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jmquigley/util.fixture"
12 },
13 "bugs": {
14 "url": "https://github.com/jmquigley/util.fixture/issues"
15 },
16 "engines": {
17 "node": ">=7.5"
18 },
19 "main": "./index.umd.min.js",
20 "module": "./index.es.min.js",
21 "types": "./index.d.ts",
22 "files": [
23 "index.*.min.js",
24 "index.d.ts"
25 ],
26 "dependencies": {
27 "fs-extra": "^7.0.1",
28 "js-yaml": "^3.12.2",
29 "klaw-sync": "^6.0.0",
30 "lodash": "^4.17.11",
31 "lorem-ipsum": "^1.0.6",
32 "power-assert": "^1.6.1",
33 "rimraf": "^2.6.3",
34 "string-template": "^1.0.0",
35 "util.chdir": "0.0.41",
36 "util.constants": "^0.0.25",
37 "util.filelist": "0.0.36",
38 "util.join": "0.0.25",
39 "util.toolbox": "0.0.74",
40 "util.wait": "0.0.37",
41 "uuid": "^3.3.2"
42 },
43 "devDependencies": {
44 "@babel/cli": "^7.2.3",
45 "@babel/core": "^7.3.4",
46 "@babel/plugin-transform-modules-umd": "^7.2.0",
47 "@babel/preset-env": "^7.3.4",
48 "@babel/preset-typescript": "^7.3.3",
49 "@babel/runtime": "^7.3.4",
50 "@types/fs-extra": "5.0.5",
51 "@types/jest": "^24.0.11",
52 "@types/js-yaml": "^3.12.0",
53 "@types/lodash": "^4.14.123",
54 "@types/lorem-ipsum": "^1.0.2",
55 "@types/node": "^11.11.1",
56 "@types/power-assert": "^1.5.0",
57 "@types/rimraf": "^2.0.2",
58 "@types/string-template": "^1.0.2",
59 "@types/uuid": "^3.4.4",
60 "babel-minify": "^0.5.0",
61 "babel-plugin-espower": "^3.0.1",
62 "babel-preset-minify": "^0.5.0",
63 "coveralls": "^3.0.3",
64 "jest": "^24.4.0",
65 "prettier": "^1.16.4",
66 "tslint": "^5.13.1",
67 "tslint-config-prettier": "^1.18.0",
68 "typescript": "^3.3.3333",
69 "util.pkgwrap": "^0.0.105"
70 },
71 "scripts": {
72 "all": "yarn install && yarn build && yarn test && yarn manifest",
73 "build": "yarn clean && yarn lint && yarn prettier && yarn build:es && yarn build:umd",
74 "build:es": "tsc -p . && minify index.js --out-file index.es.min.js",
75 "build:umd": "babel index.js --out-file index.umd.min.js",
76 "clean": "pkgwrap --clean",
77 "clean:dist": "yarn clean && rimraf node_modules/ yarn.lock",
78 "coverage": "pkgwrap --coverage --jest",
79 "lint": "pkgwrap --lint",
80 "manifest": "npm pack --dry-run",
81 "prettier": "prettier --write \"**/*.{ts,tsx,js,json,yaml,yml,css}\"",
82 "test": "jest"
83 }
84}