-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.6 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
64
65
66
67
68
69
{
"name": "chronokinesis",
"version": "6.0.0",
"description": "Module for testing time-dependent code",
"author": {
"name": "Pål Edman",
"url": "https://github.com/paed01"
},
"license": "MIT",
"type": "module",
"module": "index.js",
"main": "dist/index.cjs",
"browser": "dist/chronokinesis.cjs",
"types": "index.d.ts",
"sideEffects": true,
"repository": {
"type": "git",
"url": "git://github.com/paed01/chronokinesis.git"
},
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs",
"types": "./index.d.ts"
},
"scripts": {
"toc": "node generate-api-toc.cjs",
"test": "mocha",
"lint": "eslint . --cache && prettier . --check --cache",
"test:lcov": "c8 -r lcov -r text mocha && npm run lint",
"cov:html": "c8 mocha -R dot && c8 report --reporter html",
"posttest": "npm run lint && npm run dist && texample -g",
"prepack": "npm run dist",
"dist": "npm run toc && rollup -c"
},
"files": [
"index.js",
"index.d.ts",
"dist/chronokinesis.cjs",
"dist/index.cjs"
],
"bugs": {
"url": "https://github.com/paed01/chronokinesis/issues"
},
"keywords": [
"date",
"time",
"timezone",
"fake",
"mock",
"test",
"freeze",
"travel",
"hiro",
"fake now"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"c8": "^10.1.2",
"chai": "^5.1.0",
"eslint": "^9.3.0",
"lodash.clonedeep": "^4.5.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.3.0",
"moment": "^2.30.1",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"texample": "^0.0.6"
}
}