-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.44 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
{
"name": "@simonja/moment-date-range",
"version": "0.1.2",
"description": "Utility to create a moment date range iterator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p . --format stylish",
"format": "prettier --write \"source/**/*.ts\" \"lib/**/*.js\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run format && npm run lint && nyc ava",
"clean": "del-cli lib",
"prepare": "npm run test && npm run build",
"deploy": "npm run prepare && npx np"
},
"repository": "https://github.com/SimonJang/moment-date-range",
"engines": {
"node": ">=8"
},
"keywords": [
"range",
"moment",
"generator"
],
"files": [
"lib"
],
"author": {
"name": "Simon Jang",
"email": "simon.jang.contact@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"moment": "^2.24.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/node": "^12.12.14",
"@types/sinon": "^9.0.8",
"ava": "^3.13.0",
"del-cli": "^3.0.1",
"moment": "^2.24.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sinon": "^9.2.1",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-xo": "^0.16.0",
"typescript": "^3.7.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"source/test/test.ts"
]
}
}