UNPKG

2.06 kBJSONView Raw
1{
2 "name": "lazy-ass",
3 "description": "Lazy assertions without performance penalty",
4 "version": "2.0.3",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": {
7 "url": "https://github.com/bahmutov/lazy-ass/issues"
8 },
9 "config": {
10 "next-update": {
11 "skip": [
12 "grunt",
13 "grunt-cli",
14 "karma"
15 ]
16 }
17 },
18 "contributors": [],
19 "dependencies": {},
20 "devDependencies": {
21 "@types/jest": "27.0.2",
22 "coveralls": "2.13.3",
23 "git-issues": "1.3.1",
24 "jest": "27.3.0",
25 "mocha": "3.5.3",
26 "pkgfiles": "2.3.2",
27 "prettier": "1.13.2",
28 "semantic-release": "^18.0.0",
29 "ts-jest": "27.0.7",
30 "typescript": "4.4.4"
31 },
32 "engines": {
33 "node": "> 0.8"
34 },
35 "files": [
36 "src",
37 "dist"
38 ],
39 "homepage": "https://github.com/bahmutov/lazy-ass",
40 "keywords": [
41 "assertion",
42 "assertions",
43 "browser",
44 "debugging",
45 "defensive",
46 "lazy",
47 "node"
48 ],
49 "license": "MIT",
50 "main": "./dist",
51 "module": "./src",
52 "types": "./src",
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/bahmutov/lazy-ass.git"
56 },
57 "scripts": {
58 "clean": "rm -rf dist",
59 "prebuild": "npm run clean && npm run pretty",
60 "build": "tsc",
61 "commit": "git-issues && commit-wizard",
62 "coveralls": "cat coverage/PhantomJS*/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
63 "demo": "grunt gh-pages",
64 "dont-break": "dont-break --timeout 30",
65 "issues": "git-issues",
66 "mocha": "mocha test/*.spec.js",
67 "pkgfiles": "pkgfiles",
68 "pretest": "npm run build",
69 "semantic-release": "semantic-release",
70 "size": "npm pack --dry",
71 "test": "npm run unit && npm run jest",
72 "unit": "mocha test/commonjs.spec.js",
73 "jest": "jest",
74 "pretty": "prettier --single-quote --no-semi --write src/*.ts __tests__/*.ts"
75 },
76 "jest": {
77 "transform": {
78 "^.+\\.ts$": "ts-jest"
79 },
80 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
81 "moduleFileExtensions": [
82 "ts",
83 "js"
84 ]
85 }
86}