-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 879 Bytes
/
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
{
"name": "repeating-interval",
"version": "1.1.0",
"description": "IS0 8601 repeating interval parsing and manipulation",
"main": "index.js",
"dependencies": {
"moment": "^2.22.1"
},
"devDependencies": {
"typescript": "^1.8.10"
},
"scripts": {
"test": "node test/runTests.js",
"build": "tsc -p src/tsconfig.json",
"doc": "typedoc --target es5 --module commonjs --mode modules --out ./doc/ ./src/interval.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enriched/repeating-interval.git"
},
"keywords": [
"ISO8601",
"repeating",
"interval",
"moment",
"recurring",
"duration"
],
"author": "Rich Adams",
"license": "ISC",
"bugs": {
"url": "https://github.com/enriched/repeating-interval/issues"
},
"homepage": "https://github.com/enriched/repeating-interval#readme"
}