-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "mockdate",
"version": "3.0.5",
"description": "A JavaScript mock Date object that can be used to change when \"now\" is.",
"main": "lib/mockdate.js",
"types": "lib/mockdate.d.ts",
"dependencies": {},
"devDependencies": {
"mocha": "7.1.2",
"rollup": "2.42.4",
"rollup-plugin-typescript2": "0.30.0",
"should": "13.2.3",
"typescript": "3.9.3"
},
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:types": "tsc -t esnext --moduleResolution node -d --emitDeclarationOnly --outFile lib/mockdate.d.ts src/mockdate.ts",
"build:js": "rollup -c rollup.config.js",
"test": "npm run build && mocha",
"prepare": "npm run build",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/boblauer/MockDate.git"
},
"keywords": [
"date",
"mock",
"test"
],
"author": "Bob Lauer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/boblauer/MockDate/issues"
},
"homepage": "https://github.com/boblauer/MockDate",
"spm": {
"main": "lib/mockdate.js"
}
}